import React from "react"; import { type SearchFieldProps } from "heroui-native"; export interface NSearchFieldProps extends Omit { placeholder?: string; /** Hides the magnifier at the start of the field. */ hideSearchIcon?: boolean; /** Hides the clear button that appears once there is text. */ hideClearButton?: boolean; groupClassName?: string; inputClassName?: string; } export declare const NSearchField: React.NamedExoticComponent; //# sourceMappingURL=NSearchField.d.ts.map