export declare function setVariable(name: string, value: any, scope?: string, options?: {
    isFast?: boolean;
}): void;
export declare function getVariable(name: string, scope?: string, options?: {
    isFast?: boolean;
}): any;
