import type { PorkbunClient } from "../client"; import type { RetrieveSslBundlePayload, RetrieveSslBundleResponse } from "../types/ssl"; export type SslNamespace = ReturnType; export declare const createSslNamespace: (client: PorkbunClient) => { /** * Retrieves the SSL certificate bundle for a domain. * @param payload.domain The domain to retrieve the SSL bundle for. * @returns A promise that resolves with the SSL certificate chain, private key, and public key. * @example * client.ssl.getSslBundle({ domain: 'example.com' }); */ getSslBundle(payload: RetrieveSslBundlePayload): Promise; }; //# sourceMappingURL=ssl.d.ts.map