import type { BaseProps } from '../../BaseProps';
export type PRadioGroupOptionProps = BaseProps & {
    /**
     * Prevents this option from being selected and excludes its value from form submissions while it is disabled.
     * @default false
     */
    disabled?: boolean;
    /**
     * Sets the visible label text displayed next to the radio button that the user reads to identify the option.
     */
    label?: string;
    /**
     * @experimental Disables this option and shows a spinner to indicate that this particular option is in a loading state.
     * @default false
     */
    loading?: boolean;
    /**
     * Sets the value submitted with the form data when this radio option is selected within its parent group.
     */
    value?: string;
};
export declare const PRadioGroupOption: import("react").ForwardRefExoticComponent<Omit<import("react").DOMAttributes<{}>, "onChange" | "onInput" | "onToggle"> & Pick<import("react").HTMLAttributes<{}>, "suppressHydrationWarning" | "autoFocus" | "className" | "dir" | "hidden" | "id" | "inert" | "inputMode" | "lang" | "slot" | "style" | "tabIndex" | "title" | "translate" | "role"> & {
    /**
     * Prevents this option from being selected and excludes its value from form submissions while it is disabled.
     * @default false
     */
    disabled?: boolean;
    /**
     * Sets the visible label text displayed next to the radio button that the user reads to identify the option.
     */
    label?: string;
    /**
     * @experimental Disables this option and shows a spinner to indicate that this particular option is in a loading state.
     * @default false
     */
    loading?: boolean;
    /**
     * Sets the value submitted with the form data when this radio option is selected within its parent group.
     */
    value?: string;
} & {
    children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLElement>>;
