/** * @param {number} expectedDuration How long is the action expected to take (ms). * After half of this time, the progress will be 50%. * * @returns {number} Approx. estimated progress as an integer number between 0 and 100. */ export declare function useInfiniteProgress(expectedDuration?: number): number;