@ant-design/x
Version:
Craft AI-driven interfaces effortlessly
13 lines (12 loc) • 415 B
TypeScript
import Bubble from './Bubble';
import List from './BubbleList';
import Divider from './Divider';
import System from './System';
export type { BubbleItemType, BubbleListProps, BubbleListRef, BubbleProps, BubbleRef, } from './interface';
type BubbleType = typeof Bubble & {
List: typeof List;
System: typeof System;
Divider: typeof Divider;
};
declare const _default: BubbleType;
export default _default;