import Popup from "../popup"; import { type SheetProps } from "./sheet"; import SheetButton from "./sheet-button"; import SheetHeader from "./sheet-header"; import SheetItem from "./sheet-item"; import type { SheetItemObject } from "./sheet.shared"; export type { SheetProps } from "./sheet"; export type { SheetHeaderProps } from "./sheet-header"; export type { SheetItemProps } from "./sheet-item"; export type { SheetButtonProps } from "./sheet-button"; export type { SheetThemeVars } from "./sheet.shared"; interface SheetInterface { (props: SheetProps): JSX.Element; Backdrop: typeof Popup.Backdrop; Header: typeof SheetHeader; Item: typeof SheetItem; Button: typeof SheetButton; } declare const Sheet: SheetInterface; declare namespace Sheet { type ItemObject = SheetItemObject; } export default Sheet;