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