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