/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { SearchFieldProps } from './SearchField'; type SearchFieldContextValue = { disabled?: SearchFieldProps['disabled']; }; export declare const SearchFieldContext: import("react").Context; export {};