import type { TypeWithID } from './collections/config/types'; import type { InitOptions } from './config/types'; import type { BaseDatabaseAdapter } from './database/types'; import type { RequestContext } from './express/types'; import type { TypeWithID as GlobalTypeWithID } from './globals/config/types'; import type { Payload as LocalPayload } from './mzinga'; import { BasePayload } from './mzinga'; export { getPayload } from './mzinga'; export declare class Payload extends BasePayload { init(options: InitOptions): Promise; } declare const payload: Payload; export default payload; type GeneratedTypes = { collections: { [slug: number | string | symbol]: Record & TypeWithID; }; globals: { [slug: number | string | symbol]: GlobalTypeWithID & Record; }; }; type DatabaseAdapter = BaseDatabaseAdapter; export type { DatabaseAdapter, GeneratedTypes, RequestContext }; //# sourceMappingURL=index.d.ts.map