import type { ParameterDeclaration, BindingElement, PropertyDeclaration, PropertySignature } from './ts-morph.ts'; import { type LiteralExpressionValue } from './resolve-expressions.ts'; /** Gets the key for an initializer value. */ export declare function getInitializerValueKey(property: BindingElement | ParameterDeclaration | PropertyDeclaration | PropertySignature): string | undefined; /** Gets the initializer value for a single parameter or property. */ export declare function getInitializerValue(declaration: ParameterDeclaration | PropertyDeclaration): LiteralExpressionValue;