import React from 'react';
declare type Level = 'section' | 'subsection';
export interface SectionRowProps {
    label: string;
    level: Level;
    initialExpanded?: boolean;
    colSpan: number;
    children?: React.ReactNode;
}
export default function SectionRow({ level, label, children, initialExpanded, colSpan, }: SectionRowProps): JSX.Element;
export {};
