import type { CommonIdea } from '@sinoform/types'; export declare function getCommonIdeas(userId: string): Promise; export declare function saveCommonIdea(params: { userId: string; content: string; }): Promise; export declare function delCommonIdea(id: string): Promise;