import { LoadingDotsProps } from "@iyio/react-common"; export interface ConvoLangTheme { foregroundColor: string; inputBackground: string; inputPadding: string; inputMargin: string; inputShadow: string; inputBorder: string; buttonColor: string; buttonForeground: string; borderRadius: string; padding: string; gap: string; borderColor: string; userBackground: string; submitButtonColor?: string; userColor: string; userBorder: string; userWeight: string; agentBackground: string; agentColor: string; agentWeight: string; agentBorder: string; messageBorderRadius: string; messagePadding: string; maxMessageWidth: string; fontSize: string; loaderProps?: LoadingDotsProps; wrapLoader?: boolean; messageRowClassName?: string; messageRowUnstyled?: boolean; rowWidth?: string; suggestionBackgroundColor: string; suggestionColor: string; suggestionWeight: string; suggestionBorder: string; suggestionDivider: string; } export declare const defaultLightConvoLangTheme: ConvoLangTheme; export declare const defaultDarkConvoLangTheme: ConvoLangTheme;