export declare type Dictionary<T> = {
    [s: string]: T;
};
export declare type Config = {
    mysql?: {
        login: string;
        password: string;
    };
    directory?: {
        git: string;
        nginx: string;
        bitrix: string;
    };
};
