import { Added } from './added';
import { Removed } from './removed';
export declare class RecipientChangeLog {
    'added'?: Array<Added> | null;
    'removed'?: Array<Removed> | null;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
