declare const TraktApiTransforms: { date: { /** Drop minutes and secondes from ISO 8601 date */ dropMinutes: (timestamp: string) => string; }; array: { /** Join array elements with separator (defaults to comma ',') */ toString: (arrayOrString: T | T[], separator?: string) => T; }; search: { /** Escape special characters (+ - && || ! ( ) { } [ ] ^ " ~ * ? : /) for search */ escape: (input: string) => string; }; }; export { TraktApiTransforms };