import * as React from 'react'; import * as SheetPrimitive from '@radix-ui/react-dialog'; type SheetProps = { children: React.ReactNode; isOpen: boolean; onClose: () => void; className?: string; side?: 'top' | 'bottom' | 'left' | 'right'; /** Title of the sheet, used for a11y purposes */ title: string; /** Description of the sheet, used for a11y purposes */ description: string; } & React.ComponentProps; export declare const Sheet: ({ children, className, isOpen, onClose, side, title, description, ...rest }: SheetProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=Sheet.d.ts.map