import { Query } from './Query'; export interface ISetSessionVariableQueryInput { name: string; value: any; } export declare class SetSessionVariableQuery extends Query { protected _getQuery(): string; getParametersForQuery(): Record; }