type Payload = {
    phone_no: string;
    consumer_key: string;
    consumer_secret: string;
    environment?: "production" | "sandbox";
};
export declare const imsi: (payload: Payload) => Promise<import("axios").AxiosResponse<any, any>>;
export {};
