import { InstantConfig, InstantSchemaDef, InstantUnknownSchema } from '@instantdb/core'; import { InstantNextDatabase } from './InstantNextDatabase.tsx'; export { getUnverifiedUserFromInstantCookie, getUserFromInstantCookie, } from './getUserFromInstantCookie.ts'; export { InstantNextDatabase } from './InstantNextDatabase.tsx'; export { InstantSuspenseProvider } from './InstantSuspenseProvider.tsx'; export { createInstantRouteHandler } from '@instantdb/core'; /** * * The first step: init your application! * * Visit https://instantdb.com/dash to get your `appId` :) * * @example * import { init } from "@instantdb/react" * * const db = init({ appId: "my-app-id" }) * * // You can also provide a schema for type safety and editor autocomplete! * * import { init } from "@instantdb/react" * import schema from ""../instant.schema.ts"; * * const db = init({ appId: "my-app-id", schema }) * * // To learn more: https://instantdb.com/docs/modeling-data */ export declare function init = InstantUnknownSchema, UseDates extends boolean = false>(config: Omit, 'useDateObjects'> & { useDateObjects?: UseDates; }): InstantNextDatabase; //# sourceMappingURL=index.d.ts.map