import { ListBase, Drop, DropQuery, DropActivityQuery, DropActivity } from '@liqnft/candy-shop-types'; import { RegisterDropParams, RegisterRedemptionParams } from './shop'; export declare function fetchDropsByShopAddress(shopId: string, dropQuery?: DropQuery): Promise>; export declare function fetchDropActivitiesByWalletAddress(dropActivityQuery: DropActivityQuery): Promise>; export declare function registerDropRedemption(registerDropRedemptionData: RegisterRedemptionParams): Promise>; export declare function registerDropWithRedemption(registerDropData: RegisterDropParams): Promise>;