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