import packer from ".";
type Options = Partial<{
    ppk: string;
    out: string;
    watch: boolean;
    packerMock_: typeof packer;
}>;
declare const cli: (pluginDir: string, options_?: Options) => Promise<string>;
export = cli;
