import type { NormalizedBunnyStorageConfig } from '@/types/configNormalized.js'; import type { BunnyStorageConfig, CollectionContext } from '@/types/index.js'; import type { CollectionConfig } from 'payload'; export declare const getNormalizedConfig: (config: BunnyStorageConfig) => NormalizedBunnyStorageConfig; export declare const createCollectionContext: (config: NormalizedBunnyStorageConfig, collection: CollectionConfig, prefixOverride?: string) => CollectionContext;