import type { ObjectMeta } from "./kubernetes"; interface RedisSpec { version: string; cpu: { request: string | number; limit: string | number; }; memory: string | number; options?: { appendonly?: boolean; maxmemory?: string; maxmemoryPolicy?: string; maxmemorySamples?: number; replicaIgnoreMaxmemory?: boolean; requirepass?: string; }; } export declare class Redis { private metadata; private spec; constructor(metadata: ObjectMeta, spec: RedisSpec); get yaml(): string; } export {};