import { FC, PropsWithChildren, ReactNode } from "react"; export interface SimpleSheetProps { title: ReactNode; open: boolean; onClose?: () => void; } export declare const SimpleSheet: FC>; //# sourceMappingURL=simpleSheet.d.ts.map