/** * @internal * Utility function to remove a single leading and trailing slash from a path. */ export declare function removeSlashes(path: string): string; /** * @internal * Utility function to remove a single trailing slash from a path. */ export declare function removeTrailingSlashes(path: string): string; /** * @internal * Utility function to remove a single leading slash from a path. */ export declare function removeLeadingSlashes(path: string): string;