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