//#region src/resolve-parent-path.d.ts
/**
 * Resolve the parent path of the provided path.
 *
 * @param path - The path to resolve.
 * @param count - The number of parent directories to traverse.
 * @returns The parent path of the provided path.
 */
declare const resolveParentPath: (path: string, count?: number) => string;
//#endregion
export { resolveParentPath };
//# sourceMappingURL=resolve-parent-path.d.mts.map