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