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