import React from "react"; import * as S from "../styled-components"; interface IRadioButton extends S.IMainCssType { checked?: boolean; onChange?: (event: React.ChangeEvent) => void; label?: string; color?: string; type?: 1 | 2; backgroundColor?: string; } export declare const LabelRadioButton: React.FC; export {};