import React, { ComponentProps, FunctionComponent, ReactNode } from 'react';
declare const Input: import("@storybook/theming").StyledComponent<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, {
    radioColor: string;
}, import("@storybook/theming").Theme>;
export declare const Radio: FunctionComponent<Props & ComponentProps<typeof Input>>;
interface Props {
    appearance?: 'primary' | 'secondary';
    id: string;
    value?: string;
    label: string;
    hideLabel?: boolean;
    description?: string;
    error?: ReactNode;
    className?: string;
}
export {};
//# sourceMappingURL=Radio.d.ts.map