import * as Meta from "../meta"; import type { Process } from "../process"; export type Configure = (options: Options) => , O extends Output>(inputs: Inputs) => Process>; export declare const configure: Configure; export type Batch = Meta.Batch.Batch; export type Options = Meta.Batch.Options; export type Input = Meta.Batch.Input; export type Inputs> = Meta.Batch.Inputs; export type Output = Meta.Batch.Output; export type Outputs> = Meta.Batch.Outputs;