import { type CommonAction } from "@iflyrpa/share"; import type { ActiomCommonParams } from "../../types"; export interface GetShipinhaoBgmParams extends ActiomCommonParams { query?: string; currentPage?: number; pageSize?: number; type?: number; lastBuffer?: string; } export interface BgmListResponse { errCode: number; errMsg: string; data: { items: BgmDetail[]; lastBuffer: string; totalCount: number; }; } export interface BgmDetail { listenItem: unknown; } export type GetBgmAction = CommonAction; export declare const getShipinhaoBgm: GetBgmAction;