import { Tree } from '@nrwl/devkit';
import { StorybookConfigureSchema } from '../schema';
/**
 * When adding storybook we need to inform TSLint or ESLint
 * of the additional tsconfig.json file which will be the only tsconfig
 * which includes *.stories files.
 *
 * For TSLint this is done via the builder config, for ESLint this is
 * done within the .eslintrc.json file.
 */
export declare function updateLintConfig(tree: Tree, schema: StorybookConfigureSchema): void;
