import type { BaseProps } from '../../BaseProps';
import type { SelectedAriaAttributes, InputSearchAriaAttribute, BreakpointCustomizable, InputSearchBlurEventDetail, InputSearchChangeEventDetail, InputSearchInputEventDetail, InputSearchState } from '../types';
export type PInputSearchProps = BaseProps & {
    /**
     * Sets additional ARIA attributes on the search input, useful for combobox patterns (e.g. `role="combobox"`, `aria-expanded`).
     */
    aria?: SelectedAriaAttributes<InputSearchAriaAttribute>;
    /**
     * Provides the browser with a data type hint to enable relevant autofill suggestions.
     */
    autoComplete?: string;
    /**
     * Shows a clear button (×) inside the field that resets the value to empty when clicked.
     * @default false
     */
    clear?: boolean;
    /**
     * Reduces the input height and padding for a more compact layout.
     * @default false
     */
    compact?: boolean;
    /**
     * Sets a supplementary description displayed below the label to provide additional context.
     * @default ''
     */
    description?: string;
    /**
     * Disables the field, preventing all input. The value is not submitted with the form.
     * @default false
     */
    disabled?: boolean;
    /**
     * Associates the field with a form element by its ID when the field is not nested directly inside it.
     */
    form?: string;
    /**
     * Hides the visible label while keeping it accessible to screen readers. Supports responsive breakpoint values.
     * @default false
     */
    hideLabel?: BreakpointCustomizable<boolean>;
    /**
     * Shows a magnifying glass icon inside the field as a visual affordance for search input.
     * @default false
     */
    indicator?: boolean;
    /**
     * Sets the visible label text displayed above the input field.
     * @default ''
     */
    label?: string;
    /**
     * @experimental Disables the field and displays a loading spinner to indicate an ongoing operation.
     * @default false
     */
    loading?: boolean;
    /**
     * Sets the maximum number of characters the user can enter.
     */
    maxLength?: number;
    /**
     * Sets the validation feedback message displayed below the field when `state` is `success` or `error`.
     * @default ''
     */
    message?: string;
    /**
     * Sets the minimum number of characters required for the field to be considered valid.
     */
    minLength?: number;
    /**
     * Sets the name submitted with the form data to identify this field's value on the server.
     */
    name: string;
    /**
     * Emitted when the input loses focus, regardless of whether the value changed.
     */
    onBlur?: (event: CustomEvent<InputSearchBlurEventDetail>) => void;
    /**
     * Emitted when the input loses focus after its value was changed.
     */
    onChange?: (event: CustomEvent<InputSearchChangeEventDetail>) => void;
    /**
     * Emitted when the value has been changed as a direct result of a user action.
     */
    onInput?: (event: CustomEvent<InputSearchInputEventDetail>) => void;
    /**
     * Sets placeholder text shown inside the field when it is empty.
     * @default ''
     */
    placeholder?: string;
    /**
     * Makes the field read-only — the value is displayed but cannot be edited. The value is still submitted with the form.
     * @default false
     */
    readOnly?: boolean;
    /**
     * Marks the field as required — form submission is blocked while this field is empty.
     * @default false
     */
    required?: boolean;
    /**
     * Sets the validation state, controlling the visual appearance and style of the feedback message (`none`, `success`, `error`).
     * @default 'none'
     */
    state?: InputSearchState;
    /**
     * Sets the current search query value of the field.
     * @default ''
     */
    value?: string | null;
};
export declare const PInputSearch: import("react").ForwardRefExoticComponent<Omit<import("react").DOMAttributes<{}>, "onChange" | "onInput" | "onToggle"> & Pick<import("react").HTMLAttributes<{}>, "suppressHydrationWarning" | "autoFocus" | "className" | "dir" | "hidden" | "id" | "inert" | "inputMode" | "lang" | "slot" | "style" | "tabIndex" | "title" | "translate" | "role"> & {
    /**
     * Sets additional ARIA attributes on the search input, useful for combobox patterns (e.g. `role="combobox"`, `aria-expanded`).
     */
    aria?: SelectedAriaAttributes<InputSearchAriaAttribute>;
    /**
     * Provides the browser with a data type hint to enable relevant autofill suggestions.
     */
    autoComplete?: string;
    /**
     * Shows a clear button (×) inside the field that resets the value to empty when clicked.
     * @default false
     */
    clear?: boolean;
    /**
     * Reduces the input height and padding for a more compact layout.
     * @default false
     */
    compact?: boolean;
    /**
     * Sets a supplementary description displayed below the label to provide additional context.
     * @default ''
     */
    description?: string;
    /**
     * Disables the field, preventing all input. The value is not submitted with the form.
     * @default false
     */
    disabled?: boolean;
    /**
     * Associates the field with a form element by its ID when the field is not nested directly inside it.
     */
    form?: string;
    /**
     * Hides the visible label while keeping it accessible to screen readers. Supports responsive breakpoint values.
     * @default false
     */
    hideLabel?: BreakpointCustomizable<boolean>;
    /**
     * Shows a magnifying glass icon inside the field as a visual affordance for search input.
     * @default false
     */
    indicator?: boolean;
    /**
     * Sets the visible label text displayed above the input field.
     * @default ''
     */
    label?: string;
    /**
     * @experimental Disables the field and displays a loading spinner to indicate an ongoing operation.
     * @default false
     */
    loading?: boolean;
    /**
     * Sets the maximum number of characters the user can enter.
     */
    maxLength?: number;
    /**
     * Sets the validation feedback message displayed below the field when `state` is `success` or `error`.
     * @default ''
     */
    message?: string;
    /**
     * Sets the minimum number of characters required for the field to be considered valid.
     */
    minLength?: number;
    /**
     * Sets the name submitted with the form data to identify this field's value on the server.
     */
    name: string;
    /**
     * Emitted when the input loses focus, regardless of whether the value changed.
     */
    onBlur?: (event: CustomEvent<InputSearchBlurEventDetail>) => void;
    /**
     * Emitted when the input loses focus after its value was changed.
     */
    onChange?: (event: CustomEvent<InputSearchChangeEventDetail>) => void;
    /**
     * Emitted when the value has been changed as a direct result of a user action.
     */
    onInput?: (event: CustomEvent<InputSearchInputEventDetail>) => void;
    /**
     * Sets placeholder text shown inside the field when it is empty.
     * @default ''
     */
    placeholder?: string;
    /**
     * Makes the field read-only — the value is displayed but cannot be edited. The value is still submitted with the form.
     * @default false
     */
    readOnly?: boolean;
    /**
     * Marks the field as required — form submission is blocked while this field is empty.
     * @default false
     */
    required?: boolean;
    /**
     * Sets the validation state, controlling the visual appearance and style of the feedback message (`none`, `success`, `error`).
     * @default 'none'
     */
    state?: InputSearchState;
    /**
     * Sets the current search query value of the field.
     * @default ''
     */
    value?: string | null;
} & {
    children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLElement>>;
