import type { DecryptedWcpProjectLicense } from "@webiny/wcp/types.js"; import type { ApiCoreStorageOperations } from "./types/core.js"; export interface ApiCoreConfig { storageOperations: ApiCoreStorageOperations; testProjectLicense?: DecryptedWcpProjectLicense; } export declare const createApiCore: (config: ApiCoreConfig) => (import("@webiny/handler-graphql/index.js").GraphQLSchemaPlugin | import("@webiny/handler/index.js").RegisterExtensionPlugin | import("@webiny/api/index.js").ContextPlugin | import("@webiny/api/index.js").ContextPlugin[])[];