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