import { TextInlineStyle } from "@specimen/foundation"; export interface Props { state: boolean; label: string; labelProps?: TextInlineStyle; } declare const Radio: ({ state, label, ...props }: any) => import("@emotion/react/jsx-runtime").JSX.Element; export default Radio;