/**
 * Splits a path into array elements, ignoring (trimming) the separator at the beginning and end of the string
 * @param path {string} Path to split
 * @param separator {string} Separator, for example, a point
 * @returns {(number|string)[]}
 */
export declare function splitPath(path: string, separator?: string): Array<string | number>;
