import type { Warning } from "../types/async.js";
export interface GetTSConfigRequest {
    configPath: string | undefined;
    cwd: string;
}
export interface GetTSConfigResponse {
    path: string | undefined;
    warnings: (Warning | undefined)[];
}
export declare const getTSConfigPath: ({ configPath, cwd }: GetTSConfigRequest) => GetTSConfigResponse;
//# sourceMappingURL=tsconfig.d.ts.map