import { type OutputFormat } from '@redocly/openapi-core'; import type { VerifyConfigOptions } from '../../types.js'; import type { CommandArgs } from '../../wrapper.js'; export type PushArgv = { files: string[]; organization: string; project: string; 'mount-path': string; branch: string; author: string; message: string; 'commit-sha'?: string; 'commit-url'?: string; namespace?: string; repository?: string; 'created-at'?: string; 'default-branch': string; domain?: string; 'wait-for-deployment'?: boolean; 'max-execution-time'?: number; 'continue-on-deploy-failures'?: boolean; verbose?: boolean; format?: Extract; } & VerifyConfigOptions; export declare function handlePush({ argv, config, }: CommandArgs): Promise<{ pushId: string; } | void>; //# sourceMappingURL=push.d.ts.map