import type { FilePath } from '@atlaspack/types-internal'; export declare function isAbsolute(filepath: string): boolean; export declare function normalizeSeparators(filePath: FilePath): FilePath; export type PathOptions = { noLeadingDotSlash?: boolean; }; export declare function normalizePath(filePath: FilePath, leadingDotSlash?: boolean): FilePath; export declare function relativePath(from: string, to: string, leadingDotSlash?: boolean): FilePath;