import { Config } from '../config';
declare type PayloadType = 'MANIFEST' | 'BUNDLE';
export declare function run(args?: {
    type?: PayloadType;
    silent?: boolean;
}): Promise<void>;
export declare function bundle(args?: {
    config?: Config;
    version?: string;
    prompt?: boolean;
    silent?: boolean;
}): Promise<{
    version: string;
    bundleDir: string;
}>;
export declare function manifest(args?: {
    config?: Config;
    silent?: boolean;
}): Promise<void>;
export {};
