/** Static antibody numbering scheme region definitions. * * Contains FR/CDR boundaries for IMGT, Kabat, Chothia, and AHo schemes. * These are the canonical position ranges used after a numbering tool * (e.g. ANARCI) has assigned scheme-specific position names. */ export declare enum NumberingScheme { IMGT = "IMGT", Kabat = "Kabat", Chothia = "Chothia", AHo = "AHo" } export declare enum ChainType { Heavy = "Heavy", Light_Kappa = "Light_Kappa", Light_Lambda = "Light_Lambda" } export interface SchemeRegionDef { name: string; type: 'FR' | 'CDR'; startPosition: string; endPosition: string; chainType: ChainType; } /** IMGT region boundaries — the reference numbering scheme. * @see https://www.imgt.org/IMGTScientificChart/Numbering/IMGTIGVLsuperfamily.html */ export declare const IMGT_REGIONS: Record; /** Kabat region boundaries (differ mainly in CDR definitions). */ export declare const KABAT_REGIONS: Record; /** Chothia region boundaries. */ export declare const CHOTHIA_REGIONS: Record; /** AHo region boundaries. */ export declare const AHO_REGIONS: Record; /** Lookup table: scheme → chain type → region defs */ export declare const SCHEME_REGIONS: Record>; //# sourceMappingURL=numbering-schemes.d.ts.map