import type { ObjectMeta } from "./kubernetes"; interface CertificateV1Spec { domain: string; wildcard?: boolean; issuer?: string; replicationAllowedNamespaces?: RegExp; } export declare class CertificateV1 { private metadata; private spec; constructor(metadata: Omit & { name?: string; }, spec: CertificateV1Spec); get yaml(): string; } export {};