import type { ThemeType } from '../../literals/Type.literal'; type ZenSearchProps = { onChangeTerm?: (term: string) => void; initialTerm?: string; placeholder?: string; type?: ThemeType; disabled?: boolean; }; /** * @docunator * A search input field with a search icon on the left and a clear icon on the right. * It is a wrapper around the ZenInput component with predefined props for search functionality. * * @param onChangeTerm A callback function that is called when the search term changes. * * @param initialTerm * @param placeholder * @param type * @see ZenInput * */ export default function ZenSearch({ onChangeTerm, initialTerm, placeholder, type, disabled, }: ZenSearchProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=ZenSearch.d.ts.map