import { BoxProps } from 'grommet'; import { ISidebarProps } from './SidebarProps'; /** Collapsible side bar component * ```$ npm install grommet-controls * import { Sidebar } from 'grommet-controls'; * ... * * ``` */ declare const Sidebar: { ({ title, width, children, collapsible, ...rest }: ISidebarProps & BoxProps): JSX.Element; defaultProps: { title: any; width: string; collapsible: boolean; }; }; export { Sidebar };