export declare function isTiledFormat(val: any): boolean; /** * Join path segments with forward slashes * @param {...string} segments - Path segments to join * @returns {string} Joined path * @example * joinPath('base', 'static', 'file.json') // returns 'base/static/file.json' */ export declare function joinPath(...segments: string[]): string; export declare function getBaseName(path: string): string;