import React from 'react'; export declare type SidebarProps = React.ComponentProps<'div'> & { withBorder?: boolean; size?: 'md' | 'lg'; }; export declare const Sidebar: { (props: SidebarProps): JSX.Element; Header: React.FC; Content: (props: any) => JSX.Element; Footer: React.FC; }; export declare type SidebarHeaderProps = React.ComponentProps<'div'> & { withBorder?: boolean; }; export declare type SidebarFooterProps = React.ComponentProps<'div'> & { withBorder?: boolean; };