import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client"; import type { ACMPCAClient } from "../ACMPCAClient"; import { type GetCertificateAuthorityCsrCommandInput, type GetCertificateAuthorityCsrCommandOutput } from "../commands/GetCertificateAuthorityCsrCommand"; import type { ACMPCAServiceException } from "../models/ACMPCAServiceException"; /** * Wait until a Certificate Authority CSR is created * @deprecated Use waitUntilCertificateAuthorityCSRCreated instead. waitForCertificateAuthorityCSRCreated does not throw error in non-success cases. */ export declare const waitForCertificateAuthorityCSRCreated: (params: WaiterConfiguration, input: GetCertificateAuthorityCsrCommandInput) => Promise>; /** * Wait until a Certificate Authority CSR is created * @param params - Waiter configuration options. * @param input - The input to GetCertificateAuthorityCsrCommand for polling. */ export declare const waitUntilCertificateAuthorityCSRCreated: (params: WaiterConfiguration, input: GetCertificateAuthorityCsrCommandInput) => Promise>;