15 lines
539 B
TypeScript
15 lines
539 B
TypeScript
import type { PropsWithChildren } from 'react';
|
|
import Divider from './components/Divider';
|
|
import TabPane from './components/TabPane';
|
|
import type { CardProps, CardType } from './typing';
|
|
export type ProCardProps = CardProps;
|
|
export type ProCardType = CardType & {
|
|
isProCard: boolean;
|
|
Divider: typeof Divider;
|
|
TabPane: typeof TabPane;
|
|
Group: typeof Group;
|
|
};
|
|
declare const Group: (props: PropsWithChildren<CardProps>) => import("react/jsx-runtime").JSX.Element;
|
|
declare const ProCard: ProCardType;
|
|
export default ProCard;
|