import { IllustrationAsset, BaseSvgAsset } from './types.js';
export type ConversationWithBackgroundAsset = IllustrationAsset<BaseSvgAsset & {
    readonly name: 'ConversationWithBackground';
}>;
/**
 * ConversationWithBackground illustration asset
 * @example
 * ```tsx
 * import { Illustration } from '@payfit/unity-illustrations'
 * import ConversationWithBackground from '@payfit/unity-illustrations/assets/ConversationWithBackground'
 *
 * <Illustration
 *   illustration={ConversationWithBackground}
 *   alt="ConversationWithBackground illustration"
 *   size="md"
 * />
 * ```
 */
declare const ConversationWithBackground: ConversationWithBackgroundAsset;
export default ConversationWithBackground;
