import type { FormStore } from '../../store.svelte.js';
import type { FieldProps } from '../../types/FieldTypes.js';
type Props = {
    item: FieldProps;
    updateFormFields: (handle: string, newValue: string) => void;
    formStore: FormStore;
};
declare const Radio: import("svelte").Component<Props, {}, "">;
type Radio = ReturnType<typeof Radio>;
export default Radio;
