import { Task, TaskOptions } from "@buurman/sdk";
export interface LintStagedOptions extends TaskOptions {
}
export interface LintStagedTask extends Task<LintStagedOptions> {
    hasLinters(): Promise<boolean>;
    addLinter(pattern: string, commands: string[]): Promise<void>;
}
declare const task: LintStagedTask;
export default task;
//# sourceMappingURL=index.d.ts.map