export type AstNode = {
    type: string;
    [key: string]: unknown;
};
export declare function isAstNode(value: unknown): value is AstNode;
export declare function getNodeName(value: unknown): string | null;
export declare function isGTModule(source: string): boolean;
export declare function isStringLiteral(node: unknown): boolean;
//# sourceMappingURL=utils.d.ts.map