import { KeepSizes } from "../../Keep/KeepTheme"; import type { ComponentProps } from "react"; export interface keepRadioTheme { base: string; radioInput: string; radioType: { square: string; circle: string; }; sizes: RadioInputSizes; withCheckIcon: { on: { base: string; sizes: RadioInputSizes; }; off: { base: string; sizes: RadioInputSizes; }; }; withSquare: string; } export interface RadioInputSizes extends Pick { [key: string]: string; } export interface RadioProps extends Omit, "type" | "ref"> { sizing?: keyof RadioInputSizes; checkedIcon?: boolean; radioShape?: "circle" | "square"; value?: string; selected?: string; onOptionChange: (e: React.ChangeEvent) => void; } export declare const Radio: import("react").ForwardRefExoticComponent>;