import { CardTenantProfileRow } from '../../entity/creditAgent/creditAgentState'; /** * Payload shape expected by the web-app-v2 GET /tableDownload endpoint. */ export interface CreditReportDownloadPayload { columns: string[]; file_name: string; rows: (string | number | null | undefined)[][]; sheet_name: string; } /** * Build the payload for the web-app-v2 table download endpoint. * * The component calls this, then GETs the endpoint with the payload * as a query param and handles the blob response as a file download. */ export declare function getCreditReportDownloadPayload(rows: CardTenantProfileRow[]): CreditReportDownloadPayload;