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