import React from "react"; export type RadioProps = { /** * Callback method invoked when the user presses the button. */ onPress?: (b: boolean) => void; /** * Color theme of the button. */ color?: "primary" | "secondary" | "warning" | "danger" | "success"; /** * whether the button is in its disabled state. */ disabled?: boolean; /** * Whether the button should be in its checked state. */ checked?: boolean; /** * The size of the icon */ size?: number; }; export declare const Radio: ({ onPress, checked, disabled, size, color, }: RadioProps) => React.JSX.Element;