import { LeaderboardClientConfiguration, LeaderboardConfiguration } from './leaderboard-configuration'; import { MomentoLoggerFactory } from '@gomomento/sdk-core'; /** * Laptop config provides defaults suitable for a medium-to-high-latency dev environment. * @export * @class Laptop */ export declare class Laptop extends LeaderboardClientConfiguration { /** * Provides the latest recommended configuration for a laptop development environment. NOTE: this configuration may * change in future releases to take advantage of improvements we identify for default configurations. * @param {MomentoLoggerFactory} [loggerFactory=defaultLoggerFactory] * @returns {LeaderboardConfiguration} */ static latest(loggerFactory?: MomentoLoggerFactory): LeaderboardConfiguration; /** * Provides v1 recommended configuration for a laptop development environment. This configuration is guaranteed not * to change in future releases of the Momento web SDK. * @param {MomentoLoggerFactory} [loggerFactory=defaultLoggerFactory] * @returns {LeaderboardConfiguration} */ static v1(loggerFactory?: MomentoLoggerFactory): LeaderboardConfiguration; }