import { ISite } from '../../types'; import { IRemoteFileMigration } from '../migration/types'; export interface IJaenDataInternal { site: ISite; finderUrl?: string; migrationHistory: Array; } export declare function readFile(): IJaenDataInternal; export declare function writeFile(data: IJaenDataInternal): void;