import { ComponentProps, FC, PropsWithChildren } from 'react'; import { FlowbiteBoolean } from '../Flowbite/FlowbiteTheme'; import { SidebarCTAColors } from './SidebarCTA'; export interface FlowbiteSidebarTheme { base: string; collapsed: FlowbiteBoolean; inner: string; collapse: { button: string; icon: { base: string; open: FlowbiteBoolean; }; label: { base: string; icon: string; }; list: string; }; cta: { base: string; color: SidebarCTAColors; }; item: { active: string; base: string; collapsed: { insideCollapse: string; noIcon: string; }; content: { base: string; }; label: string; icon: { base: string; active: string; }; }; items: string; itemGroup: string; logo: { base: string; collapsed: FlowbiteBoolean; img: string; }; } export interface SidebarProps extends PropsWithChildren> { collapseBehavior?: 'collapse' | 'hide'; collapsed?: boolean; } export declare const Sidebar: FC & { Collapse: FC; CTA: FC; Item: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; Items: FC, HTMLDivElement>>>; ItemGroup: FC, HTMLUListElement>>>; Logo: FC; };