import type { ItemProps, ItemState } from '@zag-js/radio-group';
import type { Merge } from 'type-fest';
import type { HtmlIngredientProps } from '../types.js';
export interface RadioGroupItemProps extends Merge<HtmlIngredientProps<'label', HTMLLabelElement, ItemState>, ItemProps> {
}
declare const RadioGroupItem: import("svelte").Component<RadioGroupItemProps, {}, "ref">;
type RadioGroupItem = ReturnType<typeof RadioGroupItem>;
export default RadioGroupItem;
