import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client"; import type { ACMPCAClient } from "../ACMPCAClient"; import { type GetCertificateCommandInput, type GetCertificateCommandOutput } from "../commands/GetCertificateCommand"; import type { ACMPCAServiceException } from "../models/ACMPCAServiceException"; /** * Wait until a certificate is issued * @deprecated Use waitUntilCertificateIssued instead. waitForCertificateIssued does not throw error in non-success cases. */ export declare const waitForCertificateIssued: (params: WaiterConfiguration, input: GetCertificateCommandInput) => Promise>; /** * Wait until a certificate is issued * @param params - Waiter configuration options. * @param input - The input to GetCertificateCommand for polling. */ export declare const waitUntilCertificateIssued: (params: WaiterConfiguration, input: GetCertificateCommandInput) => Promise>;