import type { ParamValues } from "airplane/api";
import { DefaultParams } from "../../client";
import { RadioGroupProps } from "./RadioGroup.types";
export declare const useStyles: (params: void, options?: import("@mantine/core").UseStylesOptions<string> | undefined) => {
    classes: {
        radio: string;
        label: string;
    };
    cx: (...args: any) => string;
    theme: import("@mantine/core").MantineTheme;
};
export declare const RadioGroup: {
    <TParams extends ParamValues | undefined = DefaultParams, TOutput = any>(props: RadioGroupProps<TParams, TOutput>): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
