import { PipelineProcessor, PipelineProcessorProps, ProcessorType } from '../processor'; import { ServerStorageOptions } from '../../storage/server'; interface ServerInitiatorProps extends PipelineProcessorProps { serverStorageOptions: ServerStorageOptions; } declare class ServerInitiator extends PipelineProcessor { get type(): ProcessorType; _process(): ServerStorageOptions; } export default ServerInitiator;