import type { AutoFilterCustomCriterion } from "./AutoFilterCustomCriterion.js"; export type AutoFilterCriteria = { kind: "values"; values: Array; blank?: boolean; } | { kind: "top10"; top?: boolean; percent?: boolean; val: number; } | { kind: "custom"; logical_and?: boolean; criteria: Array; } | { kind: "unsupported"; name: string; };