import { ClassesViewSelectorReportV2 } from '../../commonStateTypes/selectorTypes/classesViewSelectorReport'; import { InsightSummary } from '../../entity/insights/insightSummary'; import { OpExClassesViewUIState } from './opExClassesViewState'; export declare const ALL_OPEX_CLASSES_VIEW_SECTION_IDS: readonly ["expenses"]; declare const toOpExClassesViewSectionID: (v: string) => "expenses"; export type OpExClassesViewSectionID = ReturnType; export declare const isOpExClassesViewSectionID: (id: string) => id is OpExClassesViewSectionID; declare const toOpExClassesViewCalculatedSectionID: (v: string) => never; export type OpExClassesViewCalculatedSectionID = ReturnType; export declare const isOpExClassesViewCalculatedSectionID: (id: string) => id is OpExClassesViewCalculatedSectionID; export interface OpExClassesViewReport extends ClassesViewSelectorReportV2 { insights: InsightSummary[]; uiState: OpExClassesViewUIState; } export {};