import React from "react"; import type { Content, Data } from "../Components"; type Props = { readonly className: string; readonly content: Content[]; readonly children: Data[]; }; export declare const Section: ({ className, content, children }: Props) => React.JSX.Element; export {};