/** * @license * Copyright 2023 Nuraly, Laabidi Aymen * SPDX-License-Identifier: MIT */ export declare const enum IconPickerSize { Small = "small", Medium = "medium", Large = "large" } export declare const enum IconPickerPlacement { Auto = "auto", Top = "top", Bottom = "bottom", TopStart = "top-start", TopEnd = "top-end", BottomStart = "bottom-start", BottomEnd = "bottom-end", Left = "left", Right = "right" } export declare const enum IconPickerTrigger { Click = "click", Hover = "hover", Manual = "manual" } export declare const enum IconType { Solid = "solid", Regular = "regular", Brands = "brands" } export interface IconPickerIcon { name: string; type: IconType; keywords?: string[]; category?: string; iconName?: string; } export interface IconPickerSearchOptions { caseSensitive?: boolean; matchMode?: 'contains' | 'startsWith' | 'exact'; categories?: string[]; } export interface IconPickerChangeEvent { value: string; icon: IconPickerIcon | null; } export declare const EMPTY_STRING = ""; //# sourceMappingURL=icon-picker.types.d.ts.map