declare type O = Record; export declare function encodeKey(input: string): string; export declare function decodeKey(input: string): string; export declare function encodeObjectKeys(input: T | T[]): T | T[]; export declare function decodeObjectKeys(input: T | T[]): T | T[]; export declare function prefixFilterKeys(prefix: string, input: T): O | O[]; export {};