/// import { DrawerColorVariant } from './Drawer'; export interface DrawerSectionProps extends React.HTMLProps { /** Additional classes added to the drawer section. */ className?: string; /** Content to be rendered in the drawer section. */ children?: React.ReactNode; /** Color variant of the background of the drawer Section */ colorVariant?: DrawerColorVariant | 'no-background' | 'default' | 'secondary'; } export declare const DrawerSection: React.FunctionComponent; //# sourceMappingURL=DrawerSection.d.ts.map