import { Declaration } from 'typescript';
import { Location } from './Location';
/**
 * The file (and the location in the file) from where an API doc element was sourced.
 */
export declare class FileInfo {
    private declaration;
    basePath: string;
    location: Location;
    filePath: any;
    baseName: any;
    extension: any;
    relativePath: any;
    projectRelativePath: any;
    realFilePath: string;
    realProjectRelativePath: any;
    constructor(declaration: Declaration, basePath: string);
    getRealFilePath(filePath: string): string;
}
