import React from "react"; import { TextInputProps } from "../TextInput/TextInput"; export type TagFieldProps = { label?: React.ReactNode; helper?: string; onClear?: () => void; } & TextInputProps; export declare function TagField({ label, helper, invalid, className, onClear, children, ref, ...rest }: TagFieldProps): React.JSX.Element; export declare namespace TagField { var displayName: string; } //# sourceMappingURL=TagField.d.ts.map