import React from 'react';
export type ThemeCardVariantType = 'dark' | 'light' | 'system';
export interface ThemeCardProps {
    variant: ThemeCardVariantType;
    title?: string;
    checked?: boolean;
    isSystemDark?: boolean;
    onClick?: (variant: ThemeCardVariantType) => unknown;
}
export declare const ThemeCard: React.FC<ThemeCardProps>;
