type Comparator = '=' | '!=' | '<' | '>' | '<=' | '>=';
export default function getCompareIsShopwareVersion(getShopwareVersion: () => Promise<string>): (comparator: Comparator, versionToCompare: string) => Promise<boolean>;
export {};
