import { IllustrationAsset, BaseAnimatedImageAsset } from './types.js';
export type PaperPlaneAnimationAsset = IllustrationAsset<BaseAnimatedImageAsset & {
    readonly name: 'PaperPlaneAnimation';
}>;
/**
 * PaperPlaneAnimation animated illustration asset (750x750)
 * @example
 * ```tsx
 * import { Illustration } from '@payfit/unity-illustrations'
 * import PaperPlaneAnimation from '@payfit/unity-illustrations/assets/PaperPlaneAnimation'
 *
 * <Illustration
 *   variant="picture"
 *   src={PaperPlaneAnimation}
 *   alt="PaperPlane animation"
 * />
 * ```
 */
declare const PaperPlaneAnimation: PaperPlaneAnimationAsset;
export default PaperPlaneAnimation;
