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