import React from 'react'; import { BoxSystemProps } from './Box'; import { StyleConfig } from '../utils/styleConfig'; export declare type RadioParts = { radio: 'hover' | 'focus' | 'active' | 'checked' | 'disabled'; icon: ''; }; declare type RadioDOMProps = React.ComponentPropsWithRef<'input'>; declare type RadioStyleConfigProp = { styleConfig?: StyleConfig; }; declare type RadioSystemProps = BoxSystemProps; export declare type RadioProps = RadioDOMProps & RadioStyleConfigProp & RadioSystemProps; export declare const Radio: React.ForwardRefExoticComponent & React.RefAttributes>; export declare const Wrapper: import("styled-components").StyledComponent<"div", any, import("../utils/systemProps").SystemProps, never>; export {};