import { ResolvedConfig } from '../common-types'; /** * Upload user code archive on ZetaPush platform * @param {String} archived * @param {Object} config */ export declare const upload: (archive: any, config: ResolvedConfig) => Promise<{}>; export declare const BLACKLIST: string[]; /** * Get a blacklist based filter function * @param {String[]} blacklist */ export declare const filter: (blacklist: string[]) => (filepath: string) => boolean;