/** * Compute the resolution for the given date interval. * @param from - start date. * @param to - end date. * @param limit - number of units to display * @returns a string representing the resolution or undefined if the interval is null or invalid. * @public */ export declare function formatResolution(from: Date, to: Date, limit?: number): string | undefined;