declare const guard: <T>(props: Readonly<{
    value: T;
    error: Error;
}>) => T & {};
export { guard };
