export declare class InboxAction {
    readonly content?: string | null;
    readonly href?: string | null;
    readonly data?: {
        [key: string]: any;
    } | null;
    constructor(content?: string | null, href?: string | null, data?: {
        [key: string]: any;
    } | null);
    static fromJson(jsonString: string): InboxAction;
}
//# sourceMappingURL=InboxAction.d.ts.map