import ClientInstance from "../../../instance/ClientInstance";
import Server from "../Server";
export default class Variable {
    private _client;
    _parentServer: Server;
    name: string;
    description: string;
    env_variable: string;
    default_value: string;
    server_value: string;
    is_editable: boolean;
    rules: string;
    raw: any;
    constructor(_client: ClientInstance, data: any, _parentServer: Server);
    update(value: string): Promise<Variable>;
}
