import { IRunArgs, OccurrenceGenerator, OccurrenceGeneratorRunResult, Operator, OperatorFnOutput, } from '../occurrence-generator'; /** * An operator function which accepts a spread of occurrence generators * and adds their occurrences to the output. * * @param streams a spread of occurrence generators */ export declare function add( ...streams: OccurrenceGenerator[] ): OperatorFnOutput; export declare class AddOperator extends Operator { set(_: 'timezone', value: string | null): AddOperator; _run(args?: IRunArgs): OccurrenceGeneratorRunResult; protected calculateIsInfinite(): boolean; protected calculateHasDuration(): boolean; }