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