import { type AppStoreConnectClient } from "../api/client.js"; import { type ProcessRunner } from "../ipa/artifact.js"; export interface CertificatesCreateCommandInput { readonly json: boolean; readonly certificateType?: string; readonly commonName?: string; readonly outputDir?: string; readonly keychainPath?: string; readonly skipInstall: boolean; } export declare function certificatesCreateCommand(client: AppStoreConnectClient, command: CertificatesCreateCommandInput, options?: { readonly processRunner?: ProcessRunner; }): Promise; //# sourceMappingURL=certificates-create.d.ts.map