import type { DrawerProps } from '@mui/material'; import type { PropsWithChildren } from 'react'; import React from 'react'; /** Props for {@link DrawerEx}. */ export interface DrawerExProps extends PropsWithChildren { heightVariant?: 'full' | 'auto'; subTitle?: string; title?: string; widthVariant?: 'full' | 'partial'; } /** Top-anchored drawer with optional title, subtitle, and width/height variants. */ export declare const DrawerEx: React.FC; //# sourceMappingURL=Drawer.d.ts.map