import type { HackleSubscriptionStatus } from './HackleSubscriptionStatus'; type HackleSubscriptionOperationsRecord = Map; export declare class HackleSubscriptionOperations { private readonly _operations; constructor(operations?: HackleSubscriptionOperationsRecord); toRecord(): Record; } export declare class HackleSubscriptionOperationsBuilder { private operations; marketing(value: HackleSubscriptionStatus): HackleSubscriptionOperationsBuilder; information(value: HackleSubscriptionStatus): HackleSubscriptionOperationsBuilder; custom(key: string, value: HackleSubscriptionStatus): HackleSubscriptionOperationsBuilder; build(): HackleSubscriptionOperations; private add; } export {};