import { default as ActionSheetRoot } from './root'; import { default as ActionSheetHeader } from './header'; import { default as ActionSheetContent } from './content'; import { default as ActionSheetFooter } from './footer'; import { default as ActionSheetHandleBar } from './handle-bar'; import { default as ActionSheetTrigger } from './trigger'; import { default as ActionSheetPortal } from './portal'; interface ActionSheetType { Root: typeof ActionSheetRoot; Header: typeof ActionSheetHeader; Content: typeof ActionSheetContent; Footer: typeof ActionSheetFooter; HandleBar: typeof ActionSheetHandleBar; Trigger: typeof ActionSheetTrigger; Portal: typeof ActionSheetPortal; } export declare const ActionSheet: ActionSheetType; export default ActionSheet;