import type { PathArray, NormalArray } from '../types';
/**
 * @example
 * const path = 'M0 0 H50';
 * const normalizedPath = SVGPathCommander.normalizePath(path);
 * // result => [['M', 0, 0], ['L', 50, 0]]
 */
export declare function normalizePath(pathInput: string | PathArray): NormalArray;
