import { ConfigurationSourceType } from "./ConfigurationSourceType";
export declare class ConfigurationSource {
    constructor();
    /**
     * The owning model key.
     * 'iVX' if the sourceType is Global
     */
    modelKey: string;
    /**
     * The service key identifier.
     */
    serviceKey: string;
    /**
     * Which model type owns the configuration.
     * Global | Organization
     */
    sourceType: ConfigurationSourceType;
}
