import { Moment } from 'moment';
import { BaseEntity } from '../../../../entities/core-entities/index.js';
/**
 * FixturesMetadataSubscriptionsRequestDto class
 * for sending request to get subscribed fixtures
 * metadata from the API. It contains the properties
 * for the request to get subscribed fixtures
 * metadata from the API.
 * @param fromDate The date from which to get
 * subscribed fixtures metadata
 * @param toDate The date to which to get fixtures
 *  metadata
 * @returns GetFixturesMetadataSubscriptionsRequestDto
 *  instance that contains the properties for the
 * request to get subscribed fixtures metadata from
 * the API.
 */
export declare class FixturesMetadataSubscriptionsRequestDto implements BaseEntity {
    [key: string]: unknown;
    constructor(data?: unknown);
    fromDate: Moment;
    toDate: Moment;
}
