export interface ThemePreviewProps {
    colors: {
        bg: string;
        message: {
            bg: string;
            text: string;
        };
        interface: {
            bg: string;
            text: string;
        };
        icons: string;
        assistant: {
            text: string;
        };
        accent: string;
        border: string;
    };
}
export declare const ThemePreview: React.FC<ThemePreviewProps>;
