import { GlideRecord } from "../types/GlideRecord"; export declare class IDRReplConsumerActionsUtil { static fetchReplEntries( consumerSetName?: string, producerInstanceId?: string ): boolean; static getConsumerStatus(current?: GlideRecord): string; static pause(consumerSetName?: string, producerInstanceId?: string): void; static resume(consumerSetName?: string, producerInstanceId?: string): void; static subscribe( consumerSetName?: string, producerInstanceId?: string ): boolean; static validateReplEntries(replSetID?: string, isSeedingRqst?: boolean): void; }