export declare const SEARCH_INPUT_CIRCULAR_SIZES: readonly ["md", "lg"]; export declare const SEARCH_INPUT_CIRCULAR_VARIANTS: readonly ["default", "destructive"]; export type SearchInputCircularSize = (typeof SEARCH_INPUT_CIRCULAR_SIZES)[number]; export type SearchInputCircularVariant = (typeof SEARCH_INPUT_CIRCULAR_VARIANTS)[number]; export interface SearchInputCircularChangeDetail { value: string; } export interface SearchInputCircularSearchDetail { value: string; }