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