import type { ProtestoHistoricoItem } from '@/@types/domain/protestosPagosBaixadosTypes'; import type { Consulta } from '../../components/chart/types/iChart'; /** Linha já normalizada para UI, com `rowId` único para listas React. */ export type ProtestoHistoricoUiRow = ProtestoHistoricoItem & { rowId: string; }; export declare function adaptToUI(items: ProtestoHistoricoItem[]): ProtestoHistoricoUiRow[]; export declare function buildChartSeries(items: ProtestoHistoricoItem[]): Consulta[];