import { InputFieldType } from ".."; export declare class Variable { private _name; private _type; get name(): string; get type(): InputFieldType; protected constructor(name: string, type: InputFieldType); static create(name: string, type: InputFieldType): Variable; }