import React from 'react'; import { FieldSetProps, LegendPlacement, LegendSize } from '../../FieldSet.types'; type Props = Pick & { labelPlacement: LegendPlacement; labelSize: LegendSize; }; declare const InlineLabelWrapper: ({ children, suffix, charCount, labelPlacement, labelSize, }: Props) => React.JSX.Element; export default InlineLabelWrapper; //# sourceMappingURL=InlineLabelWrapper.d.ts.map