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