import React from "react"; import { CSSObject } from "create-emotion"; import { TColor, IComponent } from "../types"; interface RadioProps extends IComponent { label: string; name: string; color: TColor; onChange: (state: boolean) => void; isGhost: boolean; isDisabled: boolean; options: { id: string | number, label: string, value: string }[] defaultChecked: string | number | null; labelStyle: React.CSSProperties; } declare const Radio: React.StatelessComponent export default Radio