@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
13 lines (12 loc) • 1.02 kB
TypeScript
/// <reference types="react" />
interface ContainerChildrenPropsModel {
hideMargin?: boolean;
}
interface SectionPropsModel {
showShadow: boolean;
backgroundColor: string;
}
export declare const Section: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & SectionPropsModel, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
export declare const Title: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, {}>;
export declare const ContainerChildren: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & ContainerChildrenPropsModel, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
export {};