import { PowerAppVersion, PowerAppVersionInfo } from '../types'; export declare function getChangeAndMigrations(comingVersion: string | undefined, savedVersion: string | undefined, infos: PowerAppVersionInfo[], getChange: (definition: PowerAppVersion.Definition) => TChange | undefined, getMigrations?: (type: keyof PowerAppVersion.Migrations, definitions: PowerAppVersion.Definition[]) => PowerAppVersion.MigrationFunction[]): { change: TChange | undefined; migrations: PowerAppVersion.MigrationFunction[]; } | undefined; export declare function checkVersionsQualified(_definitions: PowerAppVersionInfo[]): PowerAppVersionInfo[];