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