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