UNPKG

@hhgtech/hhg-components

Version:
10 lines (9 loc) 379 B
import React from 'react'; import { DataTrackingTypeHTMLElement } from "../../../types"; type TSearchProps = { placeholder?: string; className?: string; formatValue?: (value: string) => string; } & DataTrackingTypeHTMLElement; export declare function Search({ className, placeholder, formatValue, ...restProps }: TSearchProps): React.JSX.Element; export {};