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