import PasubotClient from './PasubotClient'; import type { GenericSchema, PasubotClientOptions } from './lib/types'; export * from 'pasubot-auth-js'; export type { User as AuthUser, Session as AuthSession } from 'pasubot-auth-js'; export type { PostgrestResponse, PostgrestSingleResponse, PostgrestMaybeSingleResponse, PostgrestError, } from 'pasubot-postgrest-js'; export { FunctionsHttpError, FunctionsFetchError, FunctionsRelayError, FunctionsError, FunctionInvokeOptions, FunctionRegion, } from 'pasubot-functions-js'; export * from 'pasubot-realtime-js'; export { default as PasubotClient } from './PasubotClient'; export type { PasubotClientOptions, QueryResult, QueryData, QueryError } from './lib/types'; /** * Creates a new Pasubot Client. */ export declare const createClient: (pasubotUrl: string, pasubotKey: string, options?: PasubotClientOptions | undefined) => PasubotClient; //# sourceMappingURL=index.d.ts.map