import { FC } from 'react'; /** * LayoutSection properties */ export interface LayoutSectionProps { /** Adds one or more classnames for an element */ className?: string; [propName: string]: any; } export declare const LayoutSection: FC;