import type { SynchronizationInfoForCreate } from "@itwin/imodels-client-authoring";
export interface TestIModelBaselineFile {
    filePath: string;
}
export interface TestChangesetFile {
    id: string;
    index: number;
    description: string;
    parentId: string;
    containingChanges: number;
    synchronizationInfo?: SynchronizationInfoForCreate;
    filePath: string;
}
export declare class TestIModelFileProvider {
    private readonly _iModelDataRootPath;
    private _baselineFile;
    private _changesetFiles;
    get changesets(): TestChangesetFile[];
    private initializeChangesetFiles;
}
//# sourceMappingURL=TestIModelFileProvider.d.ts.map