import type { AdapterConfig } from "@tweedegolf/storage-abstraction"; import { Storage } from "@tweedegolf/storage-abstraction"; import type { FastifyInstance } from "fastify"; declare module "fastify" { interface FastifyInstance { storage: Storage; } interface FastifyRequest { storage: Storage; } } interface StarscreamStorageOptions { storage: AdapterConfig | false; } export declare const StarscreamStorage: (server: FastifyInstance, options: StarscreamStorageOptions) => Promise; export {};