import { IStorageService } from '../types'; type ApplyPostfixToStorageServiceProps = { storage: T; postfix: string | undefined; }; export declare const applyPostfixToStorageService: ({ storage, postfix, }: ApplyPostfixToStorageServiceProps) => T; export {};