import type { KpiArrayOfColumnNames } from './kpi-array-of-column-names.js';
import type { KpiResultRowList } from './kpi-result-row-list.js';
/**
 * Representation of the 'KpiResultSet' schema.
 */
export type KpiResultSet = {
    header?: KpiArrayOfColumnNames;
    rows?: KpiResultRowList;
};
//# sourceMappingURL=kpi-result-set.d.ts.map