import type { Command } from "commander";
export declare function configurePreviewCommand(program: Command): void;
export declare function previewArchiveCommand(dir: string, options: unknown): Promise<boolean | undefined>;
export declare function archivePreviewBranch(authorization: {
    auth: {
        apiUrl: string;
        accessToken: string;
    };
}, branch: string, project: string): Promise<boolean>;
