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