type ReactTheme = {
    background: {
        primary: string;
        secondary: string;
        disabled: string;
    };
    text: {
        primary: string;
        secondary: string;
        disabled: string;
    };
    action: {
        primary: string;
        secondary: string;
    };
    chatBubble: {
        left: {
            bgColor: string;
            messageColor: string;
            messageTimeColor: string;
            replyBorderColor: string;
        };
        right: {
            bgColor: string;
            messageColor: string;
            messageTimeColor: string;
            replyBorderColor: string;
        };
    };
    icon: string;
    divider: string;
    hideDivider: boolean;
    input: {
        bgColor: string;
        textColor: string;
        emojiPickerTheme: "dark" | "light";
    };
};

export type { ReactTheme };
