import * as React from 'react'; import { DrawerColorVariant } from './Drawer'; export interface DrawerContentProps extends React.HTMLProps { /** Additional classes added to the Drawer. */ className?: string; /** Content to be rendered in the drawer. */ children?: React.ReactNode; /** Content rendered in the drawer panel. */ panelContent: React.ReactNode; /** Color variant of the background of the drawer panel */ colorVariant?: DrawerColorVariant | 'light-200' | 'default'; } export declare const DrawerContent: React.FunctionComponent; //# sourceMappingURL=DrawerContent.d.ts.map