import { FC } from "react"; import { ElementSize, LabelConfiguration } from "../../../../types"; /** Form input component with label props */ export type ComponentWithLabelProps = { /** Label configuration */ label: LabelConfiguration; /** Component size */ size: ElementSize; /** Unique component identifier */ id: string; /** Node element with input element */ children: React.ReactNode; }; /** Form input component with describing label */ declare const ComponentWithLabel: FC; export default ComponentWithLabel; //# sourceMappingURL=index.d.ts.map