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