export type FetchPersonalBoardPinListResponse = {
    data: Array<{
        id: string;
        type: number;
        color: number;
        emoji: string;
        startTime: number;
        duration: number;
        params: string;
        creatorId: string;
        editorId: string;
        createTime: number;
        editTime: number;
        repeat: number;
    }>;
    version: number;
};
export declare const getPersonalBoardPinListFactory: (ctx: import("../../context.js").ContextBase, api: import("../../apis.js").API) => (conversationId: string) => Promise<FetchPersonalBoardPinListResponse>;
