import { ElementChildren, SectionElement } from "../../typings"; import React from "react"; import { RecursivePartial } from "../../typings/helper"; export type SectionProps = RecursivePartial & { idx?: string | null; children?: ElementChildren | SectionElement["children"]; data?: SectionElement["data"]; }; export declare function Section(props: SectionProps): React.JSX.Element;