export interface StyledFieldsetProps {
    newValidation?: boolean;
}
declare const FieldsetStyle: import("styled-components").StyledComponent<"fieldset", any, {
    theme: object;
} & StyledFieldsetProps, "theme">;
export interface StyledLegendProps {
    /** Flag to configure fields as mandatory. */
    isRequired?: boolean;
}
declare const StyledLegend: import("styled-components").StyledComponent<"legend", any, StyledLegendProps, never>;
export { FieldsetStyle, StyledLegend };
