import { IParent, ICustomizable } from '../../../core'; export declare const enum SectionMarginSize { Small = "small", Medium = "medium", Large = "large" } export interface SectionProps extends IParent, ICustomizable { marginSize?: SectionMarginSize; } export declare function Section(props: SectionProps): JSX.Element;