import { LogService } from './log-service';
import { AbortService } from './abort-service';
import { PullService } from './pull-service';
interface ExampleServiceAttrs {
    cmd: any;
    yes: boolean;
    environment?: string;
    filename: string;
    dotenvMe?: string;
}
declare class ExampleService {
    cmd: any;
    fileName?: string;
    yes: boolean;
    log: LogService;
    abort: AbortService;
    pull: PullService;
    environment: string;
    constructor(attrs?: ExampleServiceAttrs);
    run(): Promise<void>;
}
export { ExampleService };
