import { ID, JEScheduledTransactionWithBalance } from '@zeniai/client-epic-state'; export interface Props { jeScheduleTransaction: JEScheduledTransactionWithBalance; /** Extra inset for Schedule Category (e.g. vendor schedule pages). */ categoryColumnMarginLeft?: string; onJEScheduleRowClick: (jeScheduleId: ID) => void; } export declare const ScheduleListTableNewRow: ({ jeScheduleTransaction, categoryColumnMarginLeft, onJEScheduleRowClick, }: Props) => import("react/jsx-runtime").JSX.Element;