import React from 'react'; import { Style } from 'inlines'; type MiniSheetProps = { children?: React.ReactNode; open?: boolean; onClose?: () => void; onOpen?: () => void; style?: Style; }; declare const MiniSheet: { ({ children, open, onClose, onOpen, style, }: MiniSheetProps): import("react/jsx-runtime").JSX.Element; Trigger: ({ children, }: { children?: React.ReactNode; }) => React.ReactNode; Content: ({ children, style, }: { children?: React.ReactNode; style?: Style; }) => React.ReactNode; Items: typeof MiniSheetItems; Item: typeof MiniSheetItem; Separator: typeof MiniSheetSeparator; }; type MiniSheetSeparatorProps = {}; declare function MiniSheetSeparator({}: MiniSheetSeparatorProps): import("react/jsx-runtime").JSX.Element; declare function MiniSheetItems({ children }: any): import("react/jsx-runtime").JSX.Element; declare function MiniSheetItem({ onClick, ...props }: any): import("react/jsx-runtime").JSX.Element; export { MiniSheet };