/// import { PublisherFactory, IPublisher, IPublisherFactoryParams } from '../../types'; export declare type ZipBuffer = Buffer; declare type ZipPublisherResponse = string | ZipBuffer; export interface ZipFactoryParams extends IPublisherFactoryParams { outputPath?: string; projectSlug?: string; } export interface ZipPublisher extends IPublisher { getOutputPath: () => string | undefined; setOutputPath: (path: string) => void; } export declare const createZipPublisher: PublisherFactory; export {};