import type { AgentColor } from '../sdk-types';
export interface PlazbotTheme {
    primaryColor: string;
    backgroundColor: string;
    surfaceColor: string;
    textColor: string;
    textSecondary: string;
    borderColor: string;
    bubbleUserBg: string;
    bubbleUserText: string;
    bubbleAgentBg: string;
    bubbleAgentText: string;
    inputBg: string;
    inputBorder: string;
    cardBg: string;
    cardBorder: string;
    successColor: string;
    errorColor: string;
    warningColor: string;
    borderRadius: string;
    borderRadiusLg: string;
    borderRadiusSm: string;
    fontFamily: string;
    fontSize: string;
    fontSizeSm: string;
    fontSizeLg: string;
    spacing: string;
    spacingSm: string;
    spacingLg: string;
    shadowSm: string;
    shadowMd: string;
    shadowLg: string;
}
export declare const lightTheme: PlazbotTheme;
export declare const darkTheme: PlazbotTheme;
export declare function agentColorToHex(color?: AgentColor): string;
