import { RemoteConfigurationAssignmentType, RemoteConfigurationSourceType } from "./enums";
export declare class RemoteConfigurationSource {
    id: string;
    name: string;
    type: RemoteConfigurationSourceType;
    assignmentType: RemoteConfigurationAssignmentType;
    contextKey: string | null;
    constructor(id: string, name: string, type: RemoteConfigurationSourceType, assignmentType: RemoteConfigurationAssignmentType, contextKey: string | null);
}
