///
export declare const Container: import("styled-components").StyledComponent<"div", any, {}, never>;
interface LabelProps {
font: 'primary' | 'secondary';
size: 'small' | 'medium' | 'large';
}
export declare const Label: import("styled-components").StyledComponent<"label", any, LabelProps, never>;
interface StyledTextAreaProps {
error?: boolean;
height?: string;
width?: string;
}
export declare const StyledTextArea: import("styled-components").StyledComponent<"textarea", any, StyledTextAreaProps, never>;
export declare const Instruction: import("styled-components").StyledComponent<({ as, children, color, size, font, letterSpacing, uppercase, weight, upgrade, ...other }: import("../Text").TextProps & import("react").HTMLAttributes) => JSX.Element, any, {}, never>;
export {};