import type { Plugin } from 'rollup';
import type { RegisterOptions } from 'typescript-paths';
export type PluginOptions = Omit<RegisterOptions, 'loggerID'> & {
    localResolve?: boolean;
};
/**
 * Check if a tsconfig file has path mappings configured.
 * Exported for testing purposes.
 *
 * @param tsConfigPath - Path to the tsconfig.json file
 * @returns true if the tsconfig has paths configured or extends another config, false otherwise
 */
export declare function hasPaths(tsConfigPath: string): boolean;
export declare function tsConfigPaths({ tsConfigPath, respectCoreModule, localResolve }?: PluginOptions): Plugin;
//# sourceMappingURL=tsconfig-paths.d.ts.map