import { ESLintScriptProvider, ESLintScriptProviderOptions } from "./ESLintScriptProvider";
/**
 * A {@link ScriptProvider} implementation that runs ESLint against a package's source code using a common configuration
 * that supports Prettier and TypeScript.
 */
export declare class LintScriptProvider extends ESLintScriptProvider {
    /**
     * Creates an instance of {@link LintScriptProvider} using the `options` provided.
     *
     * @param options - The options to be used.
     */
    constructor(options: ESLintScriptProviderOptions);
    protected getESLintArgs(): string[];
    protected getLoggerName(): string;
    getName(): string;
}
