export type InviteType = "cm" | "fm";
export type RegisterManagerInput = {
    first_name: string;
    last_name: string;
    email: string;
    password: string;
    password_confirmation: string;
    expire: string;
    type: InviteType;
    access: string;
};
export type Pagination = {
    total: number;
    count: number;
    per_page: number;
    current_page: number;
    total_pages: number;
    links: {
        previous?: string;
        next?: string;
    };
};
export type ResponseAccountEventsType = {
    data: Event[];
    meta: {
        pagination: Pagination;
    };
};
