/** * Types of dropdown appearance. * @public */ export { DropdownAppearance } from '../patterns/dropdown/types'; /** * Types of select filter mode. * @public */ export declare const FilterMode: { readonly none: undefined; readonly standard: "standard"; readonly manual: "manual"; }; export type FilterMode = (typeof FilterMode)[keyof typeof FilterMode]; export interface SelectFilterInputEventDetail { filterText: string; }