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