import type { AST_TOKEN_TYPES, TSESTree } from '../ts-estree';
declare namespace AST {
    type TokenType = AST_TOKEN_TYPES;
    type Token = TSESTree.Token;
    type SourceLocation = TSESTree.SourceLocation;
    type Range = TSESTree.Range;
}
export type { AST };
