/** * Discount Code Constants * * Centralized constants used by the discount-code module. Keep values * environment-driven (via `NEXT_PUBLIC_*`) where appropriate so CI/infra * can override them without code changes. */ import { DISCOUNT_TYPE } from "../../type"; /** * Default page limit for the discount codes list. Controlled by * `NEXT_PUBLIC_PAGE_LIMIT` with a safe fallback to `10`. */ export declare const pageLimit: number; export declare const DISCOUNT_TYPE_OPTIONS: { label: string; value: DISCOUNT_TYPE; }[];