import { type JSONRefObject } from '../../data/JSONRefObject'; import type { OnClickProps } from '../../model/OnClickProps'; import { type UniBlockProps } from '../../UniBlock/UniBlockProps'; import { type TableFetchData, type TariffsTableInnerContent } from './InnerTableProps'; export interface InnerTableProps extends TariffsTableInnerContent, UniBlockProps, OnClickProps { tableSource?: JSONRefObject & TableFetchData; } export declare const InnerTable: import("../../UniBlock/UniBlock").UniBlockComponent;