import * as React from "react"; import { Drawer as FluentDrawer, DrawerBody, DrawerHeader, DrawerHeaderTitle, DrawerHeaderNavigation, DrawerProps as FluentDrawerProps, OverlayDrawer, InlineDrawer } from "@fluentui/react-components"; export interface SheetProps { open?: boolean; onOpenChange?: (open: boolean) => void; children?: React.ReactNode; type?: "overlay" | "inline"; } declare const Sheet: React.ForwardRefExoticComponent>; declare const SheetTrigger: React.ForwardRefExoticComponent & { asChild?: boolean; } & React.RefAttributes>; interface SheetContentProps extends Omit { side?: "left" | "right" | "top" | "bottom"; size?: "small" | "medium" | "large" | "full"; open?: boolean; onOpenChange?: (open: boolean) => void; type?: "overlay" | "inline"; separator?: boolean; modalType?: "modal" | "non-modal" | "alert"; mountNode?: HTMLElement | { element?: HTMLElement | null; className?: string; } | null; title?: React.ReactNode; action?: React.ReactNode; showCloseButton?: boolean; } declare const SheetContent: React.ForwardRefExoticComponent>; declare const SheetHeader: React.ForwardRefExoticComponent & React.RefAttributes>; declare const SheetFooter: React.ForwardRefExoticComponent & React.RefAttributes>; declare const SheetTitle: React.ForwardRefExoticComponent & React.RefAttributes>; declare const SheetDescription: React.ForwardRefExoticComponent & React.RefAttributes>; declare const SheetClose: React.ForwardRefExoticComponent & React.RefAttributes>; export { DrawerHeader, DrawerHeaderTitle, DrawerHeaderNavigation, DrawerBody, OverlayDrawer, InlineDrawer, FluentDrawer as Drawer, }; export { Sheet, SheetTrigger, SheetClose, SheetContent, SheetHeader, SheetFooter, SheetTitle, SheetDescription, }; //# sourceMappingURL=drawer.d.ts.map