import React from 'react'; import { Style } from 'inlines'; type SheetProps = { children?: React.ReactNode; open?: boolean; style?: Style; }; declare const Sheet: { ({ children, open, style }: SheetProps): import("react/jsx-runtime").JSX.Element; Trigger: ({ children, }: { children?: React.ReactNode; }) => React.ReactNode; Content: ({ children, style, }: { children?: React.ReactNode; style?: Style; }) => React.ReactNode; Close: () => void; CloseAll: () => void; }; export { Sheet };