@hhgtech/hhg-components
Version:
Hello Health Group common components
10 lines (9 loc) • 379 B
TypeScript
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 {};