import { OrientationType, LabelPositionType, SpacingType } from './types';
interface StyledRadioGroupProps {
    $orientation: OrientationType;
    $disabled?: boolean;
    $error?: boolean;
}
interface StyledRadioItemProps {
    $labelPosition: LabelPositionType;
    $spacing: SpacingType;
    $disabled?: boolean;
    $error?: boolean;
}
export declare const StyledRadioGroup: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledRadioGroupProps>> & string;
export declare const StyledRadioItem: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, StyledRadioItemProps>> & string;
export declare const StyledError: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
export {};
