import type { DboBuilder } from "../DboBuilder/DboBuilder"; import type { OnSchemaChangeCallback } from "./SchemaWatch"; export type ValidatedWatchSchemaType = { watchType: "NONE"; } | { watchType: "DDL_trigger"; onChange?: OnSchemaChangeCallback; } | { watchType: "prostgles_queries"; onChange?: OnSchemaChangeCallback; isFallbackFromDDL: boolean; }; export declare const getValidatedWatchSchemaType: (dboBuilder: DboBuilder) => ValidatedWatchSchemaType; //# sourceMappingURL=getValidatedWatchSchemaType.d.ts.map