import { ChatBubbleProps } from "./interfaces"; export declare function getChatBubbleRootStyle(style: ChatBubbleProps.Style | undefined): { columnGap?: undefined; } | { columnGap: string | undefined; }; export declare function getBubbleStyle(style: ChatBubbleProps.Style | undefined): { background?: undefined; borderColor?: undefined; borderRadius?: undefined; borderStyle?: undefined; borderWidth?: undefined; boxShadow?: undefined; color?: undefined; fontFamily?: undefined; fontSize?: undefined; fontWeight?: undefined; letterSpacing?: undefined; paddingBlock?: undefined; paddingInline?: undefined; rowGap?: undefined; } | { background: string | undefined; borderColor: string | undefined; borderRadius: string | undefined; borderStyle: string | undefined; borderWidth: string | undefined; boxShadow: string | undefined; color: string | undefined; fontFamily: string | undefined; fontSize: string | undefined; fontWeight: string | undefined; letterSpacing: string | undefined; paddingBlock: string | undefined; paddingInline: string | undefined; rowGap: string | undefined; };