@hhgtech/hhg-components
Version:
Hello Health Group common components
11 lines (10 loc) • 449 B
TypeScript
import React from 'react';
import { TSearchInputProps } from "../../atoms";
import { DataTrackingTypeHTMLElement } from "../../../types";
type TSearchProps = {
placeholder?: string;
className?: string;
formatValue?: (value: string) => string;
} & DataTrackingTypeHTMLElement & TSearchInputProps;
export declare function Search({ className, placeholder, formatValue, ...restProps }: TSearchProps): React.JSX.Element;
export {};