import type { InjectedDependenciesParam, InjectedOptionsParam } from '..';
export interface BuilderUrlDeployOptions {
    url: string;
    shouldFlatten?: boolean;
}
export declare class BuilderHelper {
    private deps;
    private opts;
    constructor(deps: InjectedDependenciesParam, opts: InjectedOptionsParam);
    buildFromUrl(owner: string, appName: string, urlDeployOptions: BuilderUrlDeployOptions): Promise<number>;
}
