export type Variants = 'button-primary' | 'button-secondary' | 'button-icon';
export interface Search {
    id: string;
    ariaLabel: string;
    placeholder?: string;
    variant?: Variants;
    modelValue?: string;
    size?: 'small' | 'medium';
    loading?: boolean;
    buttonDisabled?: boolean;
    inputDisabled?: boolean;
}
