import { IEnvironmentFrame } from '../../../common/domain-object-model/environment-frame';
import { IExpression } from '../../../common/domain-object-model/iexpression';
import { IGlobalInfo } from '../../../common/domain-object-model/iglobal-info';
import { ISExpression } from './isexpression';
export declare class QuotedConstantWithApostrophe implements IExpression<ISExpression> {
    readonly sexpression: ISExpression;
    constructor(sexpression: ISExpression);
    toString(): string;
    evaluate(globalInfo: IGlobalInfo<ISExpression>, localEnvironment?: IEnvironmentFrame<ISExpression>, options?: unknown): ISExpression;
}
//# sourceMappingURL=quoted-constant-with-apostrophe.d.ts.map