carbon-react
Version:
A library of reusable React components for easily building user interfaces.
13 lines (12 loc) • 485 B
TypeScript
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 };