export declare class CouponDatabase {
    /** Name of the shop for which the API operations will be performed. */
    shop_name: string;
    constructor(shop_name: string);
    getCouponCodes(): any[];
    addCouponCode(code: string): void;
    removeCouponCode(code: string): void;
}
