import React from 'react'; export interface ISectionProps { title?: string; children?: any; } export declare function Section({ title, children }: ISectionProps): React.JSX.Element;