import { SvelteComponentTyped } from "svelte"; import type { SupportedAs } from "../../internal/elements"; declare class __sveltets_Render { props(): Omit, import("../../types").TInternalProps | "as" | "static" | "unmount"> & { as?: TAsProp | undefined; } & { /** * The value of the `RadioGroupOption`. * The type should match the type of the value prop in the `RadioGroup` */ value: unknown; /** Whether the `RadioGroupOption` is disabled */ disabled?: boolean | undefined; }; events(): {} & { [evt: string]: CustomEvent; }; slots(): { default: { checked: boolean; disabled: boolean; active: boolean; }; }; } export declare type RadioGroupOptionProps = ReturnType<__sveltets_Render['props']>; export declare type RadioGroupOptionEvents = ReturnType<__sveltets_Render['events']>; export declare type RadioGroupOptionSlots = ReturnType<__sveltets_Render['slots']>; export default class RadioGroupOption extends SvelteComponentTyped, RadioGroupOptionEvents, RadioGroupOptionSlots> { } export {};