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