/**
 * Runs stylelint on a glob pattern and reports the results to the console.
 * @param files A glob pattern of files to lint.
 * @param config A path to a .stylelintrc config file, or a JSON object containing stylelint configuration.
 * @param report Whether to report the results to console or not.
 */
export declare function lintSass(files: string, config?: string | JSON, report?: boolean): Promise<boolean>;
