import { ValueOf } from '../internal/types';
export declare const RadioSize: {
    readonly Medium: "medium";
    readonly Small: "small";
    readonly Mini: "mini";
};
export type RadioSize = ValueOf<typeof RadioSize>;
