import { FC } from 'react'; import { InputSize, LabelPosition } from '../types'; interface IOverview { size: InputSize; labelPosition: LabelPosition; sectionName: string; } export declare const Overview: FC; export {};