import { WorkerQueue } from "../../../state/QueuesState"; import { WorkerQueueChannel } from "../../../state/QueuesState/QueuesStateTypes"; import { CompiledTemplate } from "../../../templates"; export interface ChannelProcessedData { title: CompiledTemplate; content: string | number; description: string; ticker?: boolean; minWidth?: string; cardHighlightingData?: { queue: WorkerQueue; channel?: WorkerQueueChannel; }; } export declare class AggregatedQueuesChannelHelper { static process(queuesList: WorkerQueue[], cardId: string, aggregationId: string): ChannelProcessedData; }