/// <reference types="react" />
type Props = {
    variant: {
        borderWidth?: number;
        borderType?: string;
        isSuccess: boolean;
        isError: boolean;
        borderColor?: string;
        fontFamily?: string;
        color?: string;
        backgroundColor?: string;
        borderRadius?: number;
        fontSize?: number;
        fontWeight?: string;
        isDisabled?: boolean;
        placeholderFontFamily?: string;
        placeholderFontSize?: number;
        placeholderFontWeight?: string;
        placeholderFontDecoration?: string;
        placeholderColor?: string;
        multline?: number;
    };
};
export declare const ContainerWidget: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Props>>;
export declare const TextFieldWidget: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, Props>>;
export declare const TextAreaWidget: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, Props>>;
export {};
