import { Layout, Options } from './types.js';
/**
 * Execute the Graphviz dot command and make a Stream of the results.
 */
export declare function toStream<T extends Layout>(dot: string, options?: Options<T>): Promise<NodeJS.ReadableStream>;
