export declare class MockServerHelper { /** * Returns random integer between min and max. * @param min Minimum value that is used for calculation * @param max Maximum value that is used for calculation */ getRandomInt(min?: number, max?: number): number; /** Returns unique integer */ getUniqueIdInt(): number; } declare const mockServerHelper: MockServerHelper; export default mockServerHelper;