declare class Store { list(data: any): Promise; add(data: any): Promise; update(data: any): Promise; delete(data: any): Promise; loginList(data: any): Promise; detail(code: any): Promise; storedYnamics(params: Partial<{ isAsc: string; orderByColumn: string; pageNum: number; pageSize: number; reasonable: boolean; status: string; title: string; }>): Promise; storedYnamicAdd(params: Partial<{ content: string; coverFileId: string; title: string; }>): Promise; storedYnamiDetail(params: { id: number; }): Promise; storedYnamiRemove(params: { id: number; }): Promise; storedYnamiPublish(params: { id: number; }): Promise; storedYnamiUpdate(params: { content?: string; coverFileId?: string; id: number; title?: string; }): Promise; } export default Store;