import { PrintableString } from "@wildboar/asn1";
import type { ATTRIBUTE } from "@wildboar/x500/InformationFramework";
/**
 * @summary countryOfResidence
 * @description
 *
 * ### ASN.1 Definition:
 *
 * ```asn1
 * countryOfResidence ATTRIBUTE ::= {
 *         WITH SYNTAX PrintableString (SIZE(2))(CONSTRAINED BY {
 *         -- Must be a two-letter country acronym in accordance with
 *         -- ISO/IEC 3166 --})
 *         EQUALITY MATCHING RULE caseIgnoreMatch
 *         ID pkcs-9-at-countryOfResidence
 * }
 * ```
 *
 * @constant
 * @type {ATTRIBUTE<PrintableString>}
 * @implements {ATTRIBUTE<PrintableString>}
 */
export declare const countryOfResidence: ATTRIBUTE<PrintableString>;
//# sourceMappingURL=countryOfResidence.oa.d.mts.map