import type { ErrorDetail } from '../../../ts';
declare const RadioGroup: import("svelte").Component<{
    value?: string;
    name: string;
    label: string;
    helpText?: string;
    error?: ErrorDetail;
    class?: string;
    options?: Array<{
        value: string;
        text: string;
    }>;
    isRequired?: boolean;
    textOptional?: string;
    showOptionalText?: boolean;
    hiddenErrorText?: string;
}, {}, "value">;
type RadioGroup = ReturnType<typeof RadioGroup>;
export default RadioGroup;
