import ts from 'typescript'; /** * Helper function that returns a property accessor - either a property name (e.g. 'name') * or a computed property expression (e.g. Symbol.toStringTag) * * @param property {ts.Symbol} The property to get the accessor of * @param typeChecker {ts.TypeChecker} Instance of ts.TypeChecker * @param scope {ts.TypeNode} The root TypeNode that contained the type */ export declare const getPropertyAccessor: ( property: ts.Symbol, typeChecker: ts.TypeChecker, scope: ts.TypeNode, ) => ts.Expression;