import { BaseTagProps } from './tag.type'; declare const useTag: (props: BaseTagProps) => { value: string | undefined; dismiss: number; showInput: boolean; handleBlur: (v: string) => void; handleClose: (e: React.MouseEvent) => void; handleClick: (e: React.MouseEvent) => void; handleInputChange: (v?: string) => void; }; export default useTag; //# sourceMappingURL=use-tag.d.ts.map