import type { DBSchemaTable, TableSchemaErrors } from "prostgles-types"; import type { AuthClientRequest, AuthResultWithSID } from "../Auth/AuthTypes"; import type { PublishParser } from "./PublishParser"; import { type PermissionScope } from "./PublishParser"; type Args = AuthClientRequest & { userData: AuthResultWithSID | undefined; }; export declare function getSchemaFromPublish(this: PublishParser, { userData, ...clientReq }: Args, scope: PermissionScope | undefined): Promise<{ tables: DBSchemaTable[]; tableSchemaErrors: TableSchemaErrors; }>; export {}; //# sourceMappingURL=getSchemaFromPublish.d.ts.map