import { IVariablesManager } from './index';
export declare class VariablesManager implements IVariablesManager {
    private variables?;
    private hash?;
    private computedStyle?;
    private container?;
    setup(variables: {
        [index: string]: string;
    }): void;
    startCollectingVariables(): void;
    stopCollectingVariables(): void;
    private getVariable;
    getSizeVariable(name: string): number;
    getColorVariable(name: string): string;
}
