import SupabaseClient from './SupabaseClient'; import type { SupabaseClientOptions } from './lib/types'; export * from '@supabase/auth-js'; export type { User as AuthUser, Session as AuthSession } from '@supabase/auth-js'; export { type PostgrestResponse, type PostgrestSingleResponse, type PostgrestMaybeSingleResponse, PostgrestError, } from '@supabase/postgrest-js'; export { FunctionsHttpError, FunctionsFetchError, FunctionsRelayError, FunctionsError, type FunctionInvokeOptions, FunctionRegion, } from '@supabase/functions-js'; export * from '@supabase/realtime-js'; export { default as SupabaseClient } from './SupabaseClient'; export type { SupabaseClientOptions, QueryResult, QueryData, QueryError } from './lib/types'; /** * Creates a new Supabase Client. */ export declare const createClient: ) | { PostgrestVersion: string; } = "public" extends keyof Omit ? "public" : string & keyof Omit, SchemaName extends string & keyof Omit = SchemaNameOrClientOptions extends string & keyof Omit ? SchemaNameOrClientOptions : "public" extends keyof Omit ? "public" : string & keyof Omit, "__InternalSupabase">>(supabaseUrl: string, supabaseKey: string, options?: SupabaseClientOptions) => SupabaseClient; //# sourceMappingURL=index.d.ts.map