import ts from '@typescript/typescript6'; /** * Extract the literal text for TypeScript property names this runtime supports. * * Computed property names are intentionally not resolved because their runtime * values are not statically knowable from the syntax node alone. * * @param name TypeScript property name node. * @returns Identifier, string-literal, or numeric-literal text; otherwise `null`. */ export declare function getPropertyNameText(name: ts.PropertyName): string | null;