carbon-react
Version:
A library of reusable React components for easily building user interfaces.
12 lines (11 loc) • 549 B
TypeScript
type StyledFormSummaryProps = {
showSummary?: boolean;
fullWidth?: boolean;
};
export declare const StyledFormSummary: import("styled-components").StyledComponent<"div", any, StyledFormSummaryProps, never>;
export declare const StyledMessagePrefix: import("styled-components").StyledComponent<"div", any, {}, never>;
export type StyledInternalSummaryProps = {
type: "error" | "warning";
};
export declare const StyledInternalSummary: import("styled-components").StyledComponent<"div", any, StyledInternalSummaryProps, never>;
export {};