import type { ReactNode } from "react"; import type { RadioStoreProps } from "./radio-store.ts"; /** * Provides a radio store to [Radio](https://ariakit.com/components/radio) * components. * @see https://ariakit.com/components/radio * @example * ```jsx * * * * * * * ``` */ export declare function RadioProvider(props?: RadioProviderProps): import("react/jsx-runtime").JSX.Element; export interface RadioProviderProps extends RadioStoreProps { children?: ReactNode; }