import { CSSProperties, ReactNode } from 'react'; import { Key, RadioProps } from 'react-aria-components'; export declare const radioButtonVariants: (props?: ({ variant?: "default" | "box" | null | undefined; isPressed?: boolean | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export type RadioButtonProps = Omit & { variant?: 'default' | 'box'; isSelected?: boolean; className?: string; slot?: string; style?: CSSProperties; children?: ReactNode; label?: string; value?: Key; onChange?: (value: boolean) => void; }; //# sourceMappingURL=types.d.ts.map