| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 | import { type ExtractPropTypes } from 'vue';import { CouponInfo } from '../coupon';declare const couponListProps: {    code: {        type: import("vue").PropType<string>;        default: string;    };    coupons: {        type: import("vue").PropType<CouponInfo[]>;        default: () => never[];    };    currency: {        type: import("vue").PropType<string>;        default: string;    };    showCount: {        type: BooleanConstructor;        default: true;    };    emptyImage: StringConstructor;    chosenCoupon: {        type: NumberConstructor;        default: number;    };    enabledTitle: StringConstructor;    disabledTitle: StringConstructor;    disabledCoupons: {        type: import("vue").PropType<CouponInfo[]>;        default: () => never[];    };    showExchangeBar: {        type: BooleanConstructor;        default: true;    };    showCloseButton: {        type: BooleanConstructor;        default: true;    };    closeButtonText: StringConstructor;    inputPlaceholder: StringConstructor;    exchangeMinLength: {        type: NumberConstructor;        default: number;    };    exchangeButtonText: StringConstructor;    displayedCouponIndex: {        type: NumberConstructor;        default: number;    };    exchangeButtonLoading: BooleanConstructor;    exchangeButtonDisabled: BooleanConstructor;};export declare type CouponListProps = ExtractPropTypes<typeof couponListProps>;declare const _default: import("vue").DefineComponent<{    code: {        type: import("vue").PropType<string>;        default: string;    };    coupons: {        type: import("vue").PropType<CouponInfo[]>;        default: () => never[];    };    currency: {        type: import("vue").PropType<string>;        default: string;    };    showCount: {        type: BooleanConstructor;        default: true;    };    emptyImage: StringConstructor;    chosenCoupon: {        type: NumberConstructor;        default: number;    };    enabledTitle: StringConstructor;    disabledTitle: StringConstructor;    disabledCoupons: {        type: import("vue").PropType<CouponInfo[]>;        default: () => never[];    };    showExchangeBar: {        type: BooleanConstructor;        default: true;    };    showCloseButton: {        type: BooleanConstructor;        default: true;    };    closeButtonText: StringConstructor;    inputPlaceholder: StringConstructor;    exchangeMinLength: {        type: NumberConstructor;        default: number;    };    exchangeButtonText: StringConstructor;    displayedCouponIndex: {        type: NumberConstructor;        default: number;    };    exchangeButtonLoading: BooleanConstructor;    exchangeButtonDisabled: BooleanConstructor;}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "exchange" | "update:code")[], "change" | "exchange" | "update:code", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{    code: {        type: import("vue").PropType<string>;        default: string;    };    coupons: {        type: import("vue").PropType<CouponInfo[]>;        default: () => never[];    };    currency: {        type: import("vue").PropType<string>;        default: string;    };    showCount: {        type: BooleanConstructor;        default: true;    };    emptyImage: StringConstructor;    chosenCoupon: {        type: NumberConstructor;        default: number;    };    enabledTitle: StringConstructor;    disabledTitle: StringConstructor;    disabledCoupons: {        type: import("vue").PropType<CouponInfo[]>;        default: () => never[];    };    showExchangeBar: {        type: BooleanConstructor;        default: true;    };    showCloseButton: {        type: BooleanConstructor;        default: true;    };    closeButtonText: StringConstructor;    inputPlaceholder: StringConstructor;    exchangeMinLength: {        type: NumberConstructor;        default: number;    };    exchangeButtonText: StringConstructor;    displayedCouponIndex: {        type: NumberConstructor;        default: number;    };    exchangeButtonLoading: BooleanConstructor;    exchangeButtonDisabled: BooleanConstructor;}>> & {    onChange?: ((...args: any[]) => any) | undefined;    onExchange?: ((...args: any[]) => any) | undefined;    "onUpdate:code"?: ((...args: any[]) => any) | undefined;}, {    code: string;    currency: string;    coupons: CouponInfo[];    chosenCoupon: number;    showCount: boolean;    disabledCoupons: CouponInfo[];    showExchangeBar: boolean;    showCloseButton: boolean;    exchangeMinLength: number;    displayedCouponIndex: number;    exchangeButtonLoading: boolean;    exchangeButtonDisabled: boolean;}>;export default _default;
 |