interface ProductParams { ids: string[] | number[]; isGift?: boolean; schedule_date?: string; } export declare const getProducts: (params: ProductParams) => Promise; interface ProductDetailParams { id: string | number; is_eject?: 0 | 1; } export declare const getProductDetail: (params: ProductDetailParams) => Promise; export {};