///
import { ChildProcess } from 'child_process';
export declare class LocalGrid {
install: Promise;
process?: ChildProcess;
constructor(options?: {
install?: boolean;
});
start(port?: number): Promise;
end(): boolean | undefined;
}
export default function getInstance(create?: boolean): LocalGrid;