type Result = {
    promise: Promise<void>;
    isPending: () => boolean;
    increment: () => void;
    decrement: () => void;
};
export type { Result };
