export interface IVariable {
    id: string;
    created: Date;
    updated: Date;
    name: string;
    value: unknown;
    tags: string[];
}
export declare const MAX_VARIABLE_NAME_LENGTH: 255;
export declare const MAX_VARIABLE_VALUE_LENGTH: 5000;
export declare class Variable implements IVariable {
    readonly id: string;
    readonly kind = "variable";
    readonly created: Date;
    readonly updated: Date;
    name: string;
    value: unknown;
    tags: string[];
    get valueString(): string;
    constructor(variable: IVariable);
}
