UNPKG

@hhgtech/hhg-components

Version:
11 lines (10 loc) 449 B
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 {};