export declare const StartsWithSlashRegex: RegExp;
/**
 * Supports all operating systems
 * @example
 * splitPath('/project/heoo')
 *
 * returns ['project', 'heoo']
 */
export default function splitPath(path: string): string[];
