import type { BaseProps, ChangeHandler, ChildrenComponent } from '../../type/component';
interface Props extends BaseProps, ChangeHandler<string>, ChildrenComponent {
    value?: string;
    name: string;
    disabled?: boolean;
}
declare const RadioGroup: import("svelte").Component<Props, {}, "">;
type RadioGroup = ReturnType<typeof RadioGroup>;
export default RadioGroup;
//# sourceMappingURL=RadioGroup.svelte.d.ts.map