epn-ui
Version:
Дизайн система кабинета ВМ
13 lines (12 loc) • 394 B
TypeScript
import React from 'react';
import type { IEpnColumnItem } from '../types';
export interface ITotal {
[key: string]: number;
}
export interface IInternalSummaryProps {
columns: IEpnColumnItem<any>[];
dataSource: readonly Record<string, unknown>[];
locale: 'ru' | 'en';
}
declare const InternalSummary: React.FC<IInternalSummaryProps>;
export default InternalSummary;