/** Input to create a certificate */
export interface CertificateCreate {
    /** Content of the certificate */
    certificate: string;
    /** Content of the intermediates certificates if any */
    intermediates: string;
    /** Name of the certificate */
    name: string;
    /** Private key */
    privateKey: string;
    /** Private key passphrase if any */
    privateKeyPassphrase: string;
}
//# sourceMappingURL=CertificateCreate.d.ts.map