import type { AccountEvent } from './AccountEvent';
export type AccountEvents = {
    events: Array<AccountEvent>;
    next_from: number;
};
