import { ErrorFactory } from '../../../common/errors'; export declare enum DiscountErr { POST_FAILED = "discount/post-discount-failed", FETCH_FAILED = "discount/order/fetch-failed", NOT_FOUND = "discount/order/not-found", UPDATE_FAILED = "discount/update-discount-failed", DELETE_FAILED = "discount/delete-failed", VALIDATE_CODE_FAILED = "discount/validation-code-failed" } export declare const errors: { "discount/order/fetch-failed": string; "discount/order/not-found": string; "discount/post-discount-failed": string; "discount/update-discount-failed": string; "discount/delete-failed": string; "discount/validation-code-failed": string; }; export declare const errorFactory: ErrorFactory;