interface $$__sveltets_2_IsomorphicComponent = any, Events extends Record = any, Slots extends Record = any, Exports = {}, Bindings = string> { new (options: import('svelte').ComponentConstructorOptions): import('svelte').SvelteComponent & { $$bindings?: Bindings; } & Exports; (internal: unknown, props: Props & { $$events?: Events; $$slots?: Slots; }): Exports & { $set?: any; $on?: any; }; z_$$bindings?: Bindings; } declare const FontInputController: $$__sveltets_2_IsomorphicComponent<{ /** * Component Props * @prop {string} label - Display label for the font selector * @prop {string} value - Currently selected font family * @prop {Function} onChange - Callback when font selection changes * @prop {InputControllerConfig} config - Configuration options * @prop {string} description - Optional help text * @prop {string} controllerId - Unique identifier for this controller * @prop {any} openDropdowns - Store tracking open dropdown states * @prop {Function} toggleDropdown - Function to toggle dropdown state * @prop {Function} onFocus - Optional focus handler */ label: string; value?: { family: string; weight: string; category: string; } | null; onChange?: ((newValue: { family: string; weight: string; category: string; }) => void) | undefined; description?: string | undefined; controllerId: string; openDropdowns: any; toggleDropdown: (id: string) => void; hideRecentFromList?: boolean; hideTrashIcon?: boolean; }, { [evt: string]: CustomEvent; }, {}, {}, string>; type FontInputController = InstanceType; export default FontInputController;