import React from 'react';
import { ThemeCardVariantType } from './theme-card';
export interface ThemeCardsProps {
    titleDark?: string;
    titleLight?: string;
    titleSystem?: string;
    initialChecked?: ThemeCardVariantType;
    isSystemDark?: boolean;
    onChange?: (value: ThemeCardVariantType) => unknown;
}
export declare const ThemeCards: React.FC<ThemeCardsProps>;
