import type { IAppearanceableProps } from '../../../Behaviors/Appearanceable'; import type { IBusyableProps } from '../../../Behaviors/Busyable'; import type { IClearableProps } from '../../../Behaviors/Clearable'; import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IInvalidableProps } from '../../../Behaviors/Invalidable'; import type { IValueableProps } from '../../../Behaviors/Valueable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; import type { SearchTriggerMode } from '../../../Types/SearchTriggerMode'; /** * Represents the `ISearchBoxElementProps` interface. * * @public */ export interface ISearchBoxElementProps extends IValueableProps, IDisableableProps, IVariantableProps, IBusyableProps, IInvalidableProps, IAppearanceableProps, IClearableProps { value: string; readonly: boolean; required: boolean; autofocus: boolean; name: string; pattern: string; placeholder: string; autocomplete: boolean; mode: SearchTriggerMode; delay: number; } //# sourceMappingURL=ISearchBoxElementProps.d.ts.map