import * as v from "valibot"; /** * Message sent by the sandbox to ask the host for the current rows in a resolved * Notion data source. */ export declare const queryDataSourceMessageSchema: v.ObjectSchema<{ readonly type: v.LiteralSchema<"queryDataSource", undefined>; readonly requestId: v.StringSchema; /** * The stable snapshot ID that identifies the SDK result slot to update. This is stable for the * lifetime of the subscription. */ readonly snapshotId: v.StringSchema; /** The raw Notion data source ID to read from. */ readonly dataSourceId: v.CustomSchema | undefined>; /** The number of items to return in the snapshot. */ readonly limit: v.NumberSchema; }, undefined>; export type QueryDataSourceMessage = v.InferOutput; //# sourceMappingURL=queryDataSource.d.ts.map