export declare class Threagile {
    private metaApi;
    private directApi;
    constructor(baseURL: string);
    ping(): Promise<import("axios").AxiosResponse<import("./generated").MetaPingGet200Response, any>>;
    check(filename: string): Promise<import("axios").AxiosResponse<import("./generated").DirectCheckPost200Response, any>>;
    analyze(filename: string, dpi?: number): Promise<import("axios").AxiosResponse<any, any>>;
}
