import { SysCallName } from '@neo-one/client-common';
import ts from 'typescript';
import { WrappableType } from '../../constants';
import { ScriptBuilder } from '../../sb';
import { VisitOptions } from '../../types';
import { BuiltinValue } from '../BuiltinValue';
export declare class SysCallValue extends BuiltinValue {
    private readonly syscall;
    private readonly type;
    constructor(syscall: SysCallName, type: WrappableType);
    emit(sb: ScriptBuilder, node: ts.Identifier, options: VisitOptions): void;
}
