export interface IDrawerProps { /** * Whether the drawer is visible * @default false */ isVisible: boolean; /** * Whether to close the drawer when clicked outside * @default true */ closeOnClickOutside?: boolean; /** * Amount of scroll to close the drawer * @default 30 */ scrollAmountToClose?: number; /** * Content of the drawer */ children: React.ReactNode | JSX.Element; /** * Whether to show overlay when drawer is open * @default true */ hasOverlay?: boolean; } //# sourceMappingURL=types.d.ts.map