import type * as Vital from "../../api/index.js"; import * as core from "../../core/index.js"; import type * as serializers from "../index.js"; import { QueryGroupByItem } from "./QueryGroupByItem.js"; import { QuerySelectItem } from "./QuerySelectItem.js"; export declare const Query: core.serialization.ObjectSchema; export declare namespace Query { interface Raw { select: QuerySelectItem.Raw[]; group_by?: QueryGroupByItem.Raw[] | null; where?: string | null; } }