import { CSSProperties } from 'react'; import { PanelBodyProps } from '../panel'; type CSSPropertiesWithCustomProperties = CSSProperties & { [key: `--${string}`]: string | number | undefined; }; export interface SidebarProps extends Omit { title: string; isCollapsed?: boolean; defaultCollapsed?: boolean; onCollapseChange?: (isCollapsed: boolean) => void; style?: CSSPropertiesWithCustomProperties; } export declare const Sidebar: ({ children, className, title, ...props }: SidebarProps) => import("react/jsx-runtime").JSX.Element | null; export {};