declare const toCamelCase: (s: string) => string; declare const toSnakeCase: (s: string) => string; declare const toObjectWithSnakeCaseKeys: (o: any) => any; declare const toObjectWithCamelCaseKeys: (o: any) => any; declare const getSdkVersionNumber: () => string; declare const getSdkCommitHash: () => string | undefined; export { toCamelCase, toSnakeCase, toObjectWithCamelCaseKeys, toObjectWithSnakeCaseKeys, getSdkVersionNumber, getSdkCommitHash, };