import type { PropsWithChildren } from 'react';
interface RadioLabelProps {
    helperText?: string;
}
declare function Label({ children, helperText, }: PropsWithChildren<RadioLabelProps>): JSX.Element;
export default Label;
