export declare const STATUS_VALUES: readonly ["success", "error"]; export type TStatus = (typeof STATUS_VALUES)[number]; export declare const STATUS: { readonly success: "success"; readonly error: "error"; }; export declare const isStatusGuard: (value: unknown) => value is TStatus; //# sourceMappingURL=status.d.ts.map