export declare function generatePagePathname(currentVersion?: string | null, defaultVersion?: string | null, ...combineParts: string[]): string; export declare function fromCurrentDir(moduleUrl: string, path: string): string; export declare function isPathIgnored(relativePath: string, patterns?: string[]): boolean; /** * Determines whether a given string represents a relative or absolute file path. * * A valid path can start with: * - '/' → absolute path (e.g. '/images/icon.png') * - './' → relative path from current directory (e.g. './icon.svg') * - '../' → relative path from parent directory (e.g. '../assets/logo.png') * * This function does not consider full URLs (e.g., 'https://...') as paths. * * @param input - The string to evaluate. * @returns True if the input is a file path; false otherwise. */ export declare function isIconPath(input: string): boolean; //# sourceMappingURL=paths.d.ts.map