type SimpleExpoUpdate = ({ whenPresent, }: {
    whenPresent: WhenPresent;
}) => Promise<void>;
type WhenPresent = "applyUpdate" | ((applyUpdateAndRestart: () => Promise<void>) => Promise<void>) | ((applyUpdateAndRestart: () => Promise<void>) => void);
declare const simpleExpoUpdate: SimpleExpoUpdate;
export default simpleExpoUpdate;
