/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { InputHTMLAttributes } from 'react'; /** * The text input within a Search Field. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-forms-search-field--docs Search Field docs at Amsterdam Design System} */ export declare const SearchFieldInput: import("react").ForwardRefExoticComponent<{ /** Whether the value fails a validation rule. */ readonly invalid?: boolean; /** Describes the field for screen readers. */ readonly label?: string; } & Readonly> & import("react").RefAttributes>;