import React from 'react'; import { UpdaterStateUnion } from '@stackx/react-hooks'; export declare const Updater: React.FC<{ render?: (props: { hint: string; btnText: string; btnDissabled: boolean; state: UpdaterStateUnion; check: () => void; skipWaiting: () => void; btnAction: () => void; }) => any; autoCheck?: boolean; }>;