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, HTMLDivElement>, StyledRadioGroupProps>> & string; export declare const StyledRadioItem: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLLabelElement>, StyledRadioItemProps>> & string; export declare const StyledError: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit, HTMLDivElement>, never>> & string; export {};