import { ID, JEScheduledTransactionWithBalance } from '@zeniai/client-epic-state'; import { ScheduleListTimeframeTicks } from './scheduleListTableHeaderItemData'; export interface Props { allTimeframeTicksLabels: string[]; headersForTimeframe: ScheduleListTimeframeTicks[]; isAccountingClassesEnabled: boolean; jeScheduleTransaction: JEScheduledTransactionWithBalance; showNewSchedulesOnly: boolean; showStatusColumn: boolean; categoryColumnMarginLeft?: string; onJEScheduleRowClick: (jeScheduleId: ID) => void; } export declare const ScheduleListTableRowFixedAssets: ({ jeScheduleTransaction, allTimeframeTicksLabels, headersForTimeframe, isAccountingClassesEnabled, showNewSchedulesOnly, showStatusColumn, categoryColumnMarginLeft, onJEScheduleRowClick, }: Readonly) => import("react/jsx-runtime").JSX.Element;