import { STException } from "../compiler/STException.js"; import { Constructor } from "../reflection/IMember.js"; /** For {@code }, object {@code a} does not have a property {@code b}. */ export declare class STNoSuchPropertyException extends STException { o?: Constructor; propertyName?: string; constructor(e?: Error | undefined, o?: Constructor, propertyName?: string); getMessage(): string; }