import { CSSObject } from '@xstyled/styled-components';
import { ThemeValues } from '../../theme';
export type ThemeRadios = {
    checked: CSSObject;
    checkedCenteredColor: {
        default: string;
        disabled: string;
    };
    default: CSSObject;
};
export declare const getRadios: (theme: ThemeValues) => ThemeRadios;
