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