import type { JSONRefObject } from '../../data/JSONRefObject'; import { type OnCloseProps } from '../../model/OnCloseProps'; import { type TableFetchData, type TariffsTableInnerContent } from '../../ui-kit/InnerTable/InnerTableProps'; import { type UniBlockProps } from '../../UniBlock/UniBlockProps'; import { type CellDef } from './TariffsTableContent'; export interface TariffTableContentProps { onSetTable: (props?: TariffsTableInnerContent) => void; tableInner?: TariffsTableInnerContent; } declare type CellDefProps = CellDef & { tableSource?: JSONRefObject & TableFetchData; }; export interface TariffsTableCellProps extends TariffTableContentProps, UniBlockProps, OnCloseProps { cells: CellDefProps[]; } export declare const TariffsTableCell: import("@redneckz/uni-jsx").UNIComponent; export {};