import { ComponentProps, ElementType, ReactNode } from "react"; export interface InnerSectionProps { /** * The section name. */ title?: string; /** * An HTML element type or a custom React element type to render as. */ as?: ElementType; /** * React children. */ children: ReactNode; } export declare function InnerSection(props: InnerSectionProps): JSX.Element; export declare const Section: import("../../shared").OrbitComponent; export declare type SectionProps = ComponentProps;