import { type z } from "zod/v4"; import { singleFilter, timeFilter } from "./interfaces/filters"; export type TimeFilter = z.infer; export type FilterCondition = z.infer; export type FilterState = FilterCondition[]; export type MakeOptional = { [K in keyof T]?: T[K]; }; type AllowStringAsValue = { [K in keyof T]: K extends "value" ? string | T[K] : T[K]; }; export type WipFilterCondition = AllowStringAsValue>; export type WipFilterState = WipFilterCondition[]; export type FilterOption = { value: string; count?: number; displayValue?: string; description?: string; }; export type TableName = "traces" | "generations" | "sessions" | "scores" | "prompts" | "dashboard" | "widgets" | "users" | "eval_configs" | "dataset_items" | "job_executions" | "dataset_runs" | "dataset_run_items_by_run"; export {}; //# sourceMappingURL=types.d.ts.map