export interface TextProps {
    arg: {
        name: string;
        value: string;
        type: string;
    };
    onChange: (value: any) => void;
    isPristine: boolean;
}
declare const TextType: ({ arg, onChange, isPristine }: TextProps) => import("react/jsx-runtime").JSX.Element;
export default TextType;
