export default interface SendLocalList {
    updateType: 'Differential' | 'Full';
    listVersion: number;
    localAuthorisationList?: [] | [
        {
            idTag: string;
            idTagInfo?: {
                status: 'Accepted' | 'Blocked' | 'Expired' | 'Invalid';
                expiryDate?: string;
                parentIdTag?: string;
                [k: string]: unknown;
            };
            [k: string]: unknown;
        }
    ];
    hash?: string;
}
