/// import { BaseDrawerDeclarations } from '../BaseDrawer/BaseDrawer.types'; export declare namespace DrawerDeclarations { interface DrawerLayoutProps extends BaseDrawerDeclarations.Props { drawerHeader?: React.ReactNode; drawerFooter?: React.ReactNode; headerBorder?: boolean; footerBorder?: boolean; scrollbarBorder?: boolean; showCloseButton?: boolean; } interface Props extends DrawerLayoutProps { } interface DrawerContentStyled { hasHeader?: boolean; hasFooter?: boolean; } }