import { Action } from "./Action.js";
import { SelectQuery } from "./Select.js";
import { When } from "./When.js";
export interface Each {
    name?: string;
    query: SelectQuery[];
    actions: Action[];
    context?: number | null;
    when?: When;
}
