import { CAMPAIGN_STATUS } from "../../type"; export declare const pageLimit: number; export declare const STATUS_OPTIONS: readonly [{ readonly label: "filterOptionAll"; readonly value: ""; }, { readonly label: "filterOptionDraft"; readonly value: CAMPAIGN_STATUS.DRAFT; }, { readonly label: "filterOptionScheduled"; readonly value: CAMPAIGN_STATUS.SCHEDULED; }, { readonly label: "filterOptionRunning"; readonly value: CAMPAIGN_STATUS.RUNNING; }, { readonly label: "filterOptionCompleted"; readonly value: CAMPAIGN_STATUS.COMPLETED; }, { readonly label: "filterOptionFailed"; readonly value: CAMPAIGN_STATUS.FAILED; }, { readonly label: "filterOptionPaused"; readonly value: CAMPAIGN_STATUS.PAUSED; }];