export declare function alignIfLegacy(url: string, type: string): string; type RemoveUndefinedKeys = T extends Record ? { [K in keyof T]: T[K] extends undefined ? never : T[K]; } : T; export declare function removeUndefinedKeys>(obj: T): RemoveUndefinedKeys; export declare function constantCase(input: string): string; export declare function split(value: string): string[]; export {};