import { type LocalAdapterConfig, StorageLocalAdapter } from "./storage/StorageLocalAdapter";
export * from "./node.adapter";
export { StorageLocalAdapter, type LocalAdapterConfig };
export declare function registerLocalMediaAdapter(): (config?: Partial<LocalAdapterConfig>) => {
    type: string;
    config: {
        path: string;
    };
};
