import { STYLE, DEVSERVER, STRATEGY } from '@omni-door/tpl-utils';
interface Config {
    ts: boolean;
    test: boolean;
    eslint: boolean;
    commitlint: boolean;
    style: STYLE;
    stylelint: boolean;
    devServer: DEVSERVER;
}
export declare function dependencies(strategy: STRATEGY): {
    depArr: string[];
    depStr: string;
};
export declare function devDependencies(strategy: STRATEGY, config: Config): {
    devDepArr: string[];
    defaultDepArr: string[];
    defaultDepStr: string;
    tsDepArr: string[];
    tsDepStr: string;
    testDepArr: string[];
    testDepStr: string;
    eslintDepArr: string[];
    eslintDepStr: string;
    commitlintDepArr: string[];
    commitlintDepStr: string;
    stylelintDepArr: string[];
    stylelintDepStr: string;
    devServerDepArr: string[];
    devServerDepStr: string;
};
export {};
