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;
