import { SchemaDefinitionBase } from '../../api/schema-definition-base.js';
import { type SchemaDefinition } from '../../api/schema-definition.js';
import { RemoteConfigSchema } from '../../../model/remote/remote-config-schema.js';
import { type ClassConstructor } from '../../../../../business/utils/class-constructor.type.js';
import { type SchemaMigration } from '../../api/schema-migration.js';
import { type SemanticVersion } from '../../../../../business/utils/semantic-version.js';
import { type ObjectMapper } from '../../../../mapper/api/object-mapper.js';
export declare class RemoteConfigSchemaDefinition extends SchemaDefinitionBase<RemoteConfigSchema> implements SchemaDefinition<RemoteConfigSchema> {
    constructor(mapper: ObjectMapper);
    get name(): string;
    get version(): SemanticVersion<number>;
    get classConstructor(): ClassConstructor<RemoteConfigSchema>;
    get migrations(): SchemaMigration[];
}
