///
import { RecursivePartial } from '../typings';
import { ISection } from '../components/core/blocks/basic/Section';
export declare type SectionProps = RecursivePartial & RecursivePartial & {
children?: JSX.Element | JSX.Element[] | string;
};
export declare function Section(props: SectionProps): JSX.Element;