export interface OperatorModel {
    province: string[];
    base: string;
    model?: string;
    operator: string;
    type: ("permanent" | "credit")[];
}
export declare const operatorsMap: {
    shatelMobile: string;
    MCI: string;
    Irancell: string;
    Taliya: string;
    RightTel: string;
};
export declare const MCI: Record<string, OperatorModel>;
export declare const Taliya: Record<string, OperatorModel>;
export declare const RightTel: Record<string, OperatorModel>;
export declare const Irancell: Record<string, OperatorModel>;
export declare const ShatelMobile: Record<string, OperatorModel>;
export declare const prefixes: string[];
export declare const operators: {
    [x: string]: OperatorModel;
};
export declare const mobileRegex: RegExp;
export declare function getPhonePrefix(mobile: string): string;
