import { type TSESTree } from "@typescript-eslint/utils";
type ScopeDeclaration = {
    type: "scope" | "scopeDefault" | "scopeException";
    path: string;
    loc: TSESTree.SourceLocation;
};
export declare const getScopeDeclarations: (comments: TSESTree.Comment[]) => ScopeDeclaration[];
export declare const getPathLoc: (text: string, loc: TSESTree.SourceLocation) => TSESTree.SourceLocation;
export declare const extractPathFromImport: (node: TSESTree.Node) => string | undefined;
export {};
