import type { BaseOptionValues } from '../base-command.js';
export type DeployOptionValues = BaseOptionValues & {
    alias?: string;
    allowAnonymous?: boolean;
    build: boolean;
    branch?: string;
    context?: string;
    createdVia?: string;
    createSite?: string | boolean;
    dir?: string;
    draft: boolean;
    functions?: string;
    json: boolean;
    message?: string;
    open: boolean;
    prod: boolean;
    prodIfUnlocked: boolean;
    site?: string;
    siteName?: string;
    skipFunctionsCache: boolean;
    team?: string;
    timeout?: number;
    trigger?: boolean;
    uploadSourceZip?: boolean;
};
//# sourceMappingURL=option_values.d.ts.map