import { type Tree } from '@nx/devkit'; export declare const STYLELINT_CONFIG_FILE_PATTERN = ".stylelintrc(.(json|yml|yaml|js))?"; export declare const STYLELINT_CONFIG_FILE = ".stylelintrc.json"; export declare const createRootStylelintConfigFile: (tree: Tree, withScssSupport: boolean) => void; export declare function createProjectStylelintConfigFile(tree: Tree, projectRoot: string, withScssSupport: boolean): void; export declare function isCompatibleRootConfig(tree: Tree): boolean; export declare function getInputConfigFiles(configFilePath: string, projectRoot: string): Promise; export declare function readAffectingStylelintConfigFiles(configFilePath: string): Promise>;