/** * Check if tsconfig.json exists in the given directory * @description Used to check if the project is a typescript project * @param dir The directory to check * @returns True if tsconfig.json exists in the directory */ export declare function checkTsUsage(dir?: string): boolean;