import ts from 'typescript';
import { ScriptBuilder } from '../../sb';
import { VisitOptions } from '../../types';
import { Helper } from '../Helper';
export interface GetSmartContractPropertyHelperOptions {
    readonly property: ts.PropertyDeclaration;
}
export declare class GetSmartContractPropertyHelper extends Helper {
    private readonly property;
    constructor({ property }: GetSmartContractPropertyHelperOptions);
    emit(sb: ScriptBuilder, node: ts.Node, options: VisitOptions): void;
}
