/**
 * Normalizes a given path by ensuring it ends with the appropriate path separator.
 *
 * @param path - The path to be normalized.
 * @returns The normalized path.
 * @throws Error if the path is empty.
 */
export declare function normalizePath(path: string): string;
