import { ColumnConfigSection } from '@/components/columnConfigurator/ColumnConfigurator.types'; export declare enum ColumnId { DATE = "date", AD_FORMAT = "adFormat", APP = "app", PLATFORM = "platform", COUNTRY = "country", SEGMENT = "segment", REVENUE = "revenue", DAU = "dau", IMPRESSIONS = "impressions", CLICKS = "clicks", CTR = "ctr", ENGAGED_SESSIONS = "engagedSessions", ENGAGEMENT_RATE = "engagementRate", QCTR = "qctr", REACH = "reach", UNIQUE_CLICKS = "uniqueClicks", VIDEO_VIEWS = "videoViews" } export declare const TABLE_COLUMNS: ({ id: ColumnId; title: string; width?: undefined; } | { id: ColumnId; title: string; width: number; })[]; export declare const COLUMNS_CONFIG: ColumnConfigSection[];