import Call from '../Call';
import UpdateType from '../../enum/UpdateType';
export declare type SendLocalListPayload = {
    listVersion: number;
    localAuthorizationList?: any;
    updateType: UpdateType;
};
export default class SendLocalList extends Call {
    payload?: SendLocalListPayload | undefined;
    constructor(payload?: SendLocalListPayload | undefined);
}
