carbon-react
Version:
A library of reusable React components for easily building user interfaces.
31 lines (30 loc) • 1.21 kB
TypeScript
import { FormButtonAlignment } from "./form.config";
interface StyledFormContentProps {
stickyFooter?: boolean;
isInModal?: boolean;
fieldSpacing?: string;
}
export declare const StyledFormContent: import("styled-components").StyledComponent<"div", any, StyledFormContentProps, never>;
interface StyledFormFooterProps {
hasFooterChildren?: boolean;
stickyFooter?: boolean;
stickyFooterVariant?: "light" | "grey";
fullWidthButtons?: boolean;
buttonAlignment?: FormButtonAlignment;
}
export declare const StyledFormFooter: import("styled-components").StyledComponent<"div", any, {
theme: object;
} & StyledFormFooterProps, "theme">;
interface StyledFormProps extends StyledFormContentProps {
height?: string;
}
export declare const StyledForm: import("styled-components").StyledComponent<"form", any, {
theme: object;
} & StyledFormProps, "theme">;
export declare const StyledRightButtons: import("styled-components").StyledComponent<"div", any, {
buttonAlignment?: FormButtonAlignment;
}, never>;
export declare const StyledLeftButtons: import("styled-components").StyledComponent<"div", any, {
buttonAlignment?: FormButtonAlignment;
}, never>;
export {};