import { CSSProps } from "../../CSSProps"; import { ThemeProps } from "../../theme"; /** * @typedef Theme.WelcomeMessageThemeProps * @property {CSSProps} Container - Styles for the container for the chat welcome message * @property {CSSProps} Icon - Styles for the container for the chat welcome message icon */ export interface WelcomeMessageThemeProps { Container: CSSProps; Icon: CSSProps; } export interface WelcomeMessageProps extends ThemeProps { } export declare enum WelcomeMessageChildrenKeys { icon = "icon", text = "text" }