import { RadioGroup as RadioGroupPrimitive, type WithoutChildrenOrChild } from "bits-ui";
type $$ComponentProps = WithoutChildrenOrChild<RadioGroupPrimitive.ItemProps> & {
    value: string;
};
declare const RadioGroupItem: import("svelte").Component<$$ComponentProps, {}, "ref">;
type RadioGroupItem = ReturnType<typeof RadioGroupItem>;
export default RadioGroupItem;
