export declare class Path {
	readonly category: number
	readonly repository: string
	readonly path: string
	private _index?
	private _index2?

	constructor(opts: {category: number; repository: string; path: string})

	get indexHash(): bigint

	get index2Hash(): bigint
}
