interface ContainerProps { /** Controls the look of the element */ size?: 'regular' | 'medium' | 'large'; /** The value of the radio button */ checked?: boolean; /** Specifies if the checkbox is disabled or not */ disabled?: boolean; } export declare const Container: import("styled-components").StyledComponent<"div", any, ContainerProps, never>; export declare const Label: import("styled-components").StyledComponent<"label", any, {}, never>; interface RadioButtonProps { /** Is large */ large?: boolean; /** The value of the radio button */ checked?: boolean; } export declare const RadioButton: import("styled-components").StyledComponent<"span", any, RadioButtonProps, never>; export declare const StyledInput: import("styled-components").StyledComponent<"input", any, {}, never>; export {};