import Bubble from './Bubble';
import List from './BubbleList';
export type { BubbleProps } from './interface';
type BubbleType = typeof Bubble & {
    List: typeof List;
};
declare const _default: BubbleType;
export default _default;
