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