declare type RadioVariant = 'primary' | 'secondary' | 'tertiary'; export declare type Props = { variant?: RadioVariant; disabled?: boolean; error?: boolean; name?: string; value?: string; id: string; checked?: boolean; onChange?: Function; }; declare const RadioStyle: import("styled-components").StyledComponent<"input", any, { type: "radio"; } & Props, "type">; export default RadioStyle; declare type StyleOnlyProps = { variant?: RadioVariant; checked?: boolean; disabled?: boolean; error?: boolean; focus?: boolean; }; declare const RadioCircleStyle: import("styled-components").StyledComponent<"span", any, StyleOnlyProps, never>; export { RadioCircleStyle }; declare const RadioWrapperStyle: import("styled-components").StyledComponent<"div", any, StyleOnlyProps & { focus: boolean; }, never>; export { RadioWrapperStyle }; //# sourceMappingURL=RadioStyle.d.ts.map