import { ParsedCommandLine } from 'typescript';
export type TsDirs = {
    source: string | undefined;
    output: string | undefined;
};
export declare function getTsDirs(packageDir: string, overrideTsConfig?: Partial<ParsedCommandLine>): TsDirs | undefined;
