type CrossEvent<T = any> = {
    type: string;
    value?: T;
};

export type { CrossEvent };
