export type Size = "xs" | "sm" | "md" | "lg" | "fluid";

export type MessageType = "html" | "text" | "image" |"custom";

export type UserStatus = "available" | "unavailable" | "away" | "dnd" | "invisible" | "eager";

export type LoaderVariant = "default";

export type MessageDirection = "incoming" | "outgoing" | 0 | 1;

export type AvatarPosition = "tl" | "tr" | "cl" | "cr" | "bl" | "br" | "top-left" | "top-right" | "center-left" | "center-right" | "bottom-left" | "bottom-right";