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