/// import type { IButtonProps } from '../../primitives/Button'; import type { IBoxProps } from '../../primitives/Box'; export declare type IActionsheetProps = IBoxProps & { isOpen?: boolean; onClose?: any; disableOverlay?: boolean; }; export declare type IActionsheetContentProps = IBoxProps; export declare type IActionsheetFooterProps = IBoxProps; export declare type IActionsheetHeaderProps = IBoxProps; export declare type IActionsheetItemProps = IButtonProps; export declare type IActionsheetComponentType = ((props: IActionsheetProps) => JSX.Element) & { Content: React.MemoExoticComponent<(props: IActionsheetContentProps) => JSX.Element>; Footer: React.MemoExoticComponent<(props: IActionsheetFooterProps) => JSX.Element>; Header: React.MemoExoticComponent<(props: IActionsheetHeaderProps) => JSX.Element>; Item: React.MemoExoticComponent<(props: IActionsheetItemProps) => JSX.Element>; };