import { ComponentProps, ElementType, FC } from 'react'; import { DeepPartial } from '../../types/types'; import { SidebarTheme } from './theme'; export interface SidebarProps extends ComponentProps<"div"> { as?: ElementType; collapseMode?: "collapse" | "hide"; theme?: DeepPartial; open?: boolean; onOpenChange?: () => void; customBgColor?: string; innerClassName?: string; footer?: React.ReactNode; hasMotion?: boolean; } export declare const Sidebar: FC; //# sourceMappingURL=Sidebar.d.ts.map