import { FC, ReactNode } from 'react'; export declare const SideBar: FC<{ title: string; footer?: string; children: ReactNode; options: Array<{ label: string; icon: string; prefix?: string; click?: () => void; focused?: boolean; } | false>; }>;