export interface Ipurchase { AdNm: string; ordNo: string; itemId: string; itemNm: string; sellprc: number; ordAmt: number; dcAmt: number; rlordAmt: number; rlordQty: number; ordState: string; ordDate: string; Commission: number; ordUniqNo?: string; updateDate?: string; Apclid?: string; ChNm?: string; } declare function init(): void; declare function getCookieValue(): string | null; declare function originGetCookieValue(): string | null; declare function purchase(data: Ipurchase): void; declare function purchaseCancel(data: Ipurchase): void; declare const _default: { init: typeof init; getCookieValue: typeof getCookieValue; originGetCookieValue: typeof originGetCookieValue; purchase: typeof purchase; purchaseCancel: typeof purchaseCancel; }; export default _default;