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