import CallResult from '../CallResult';
export declare type GetConfigurationResPayload = {
    configurationKey?: KeyValue[];
    unknownKey?: string[];
};
export declare type KeyValue = {
    key: string;
    readonly: boolean;
    value?: string;
};
export default class GetConfigurationResult extends CallResult {
    uniqueId: string;
    payload: GetConfigurationResPayload;
    constructor(uniqueId: string, payload: GetConfigurationResPayload);
}
