import type { Node } from './ts-morph.ts'; /** The start and and position of the declaration in the file. */ export type DeclarationPosition = { start: { line: number; column: number; }; end: { line: number; column: number; }; }; export type DeclarationLocation = { /** The file path for the symbol declaration relative to the project. */ filePath: string; /** The start and end positions of the declaration in the file. */ position: DeclarationPosition; }; /** Gets the location of a declaration. */ export declare function getDeclarationLocation(declaration: Node): DeclarationLocation;