export type FetchPersonalTodoVerifyResponse = {
    updated: Array<{
        id: string;
        creator: string;
        updateTime: number;
        createTime: number;
        assignees: Array<{
            userId: string;
            status: number;
        }>;
        dueDate: number;
        content: string;
        description: string;
        extra: {
            toUid: string;
            msgType: number;
            msgId: string;
            cliMsgId: string;
            ownerMsgUId: string;
            isGroup: boolean;
            message?: string;
            mention: Array<string>;
        };
        dateDefaultType: number;
        status: number;
        watchers: Array<string>;
        personalBoardType: number;
        dingTimes: number;
        schedule: number;
        attach: string;
    }>;
    scrollId: string;
    timestamp: number;
};
export declare const getPersonalTodoVerifyFactory: (ctx: import("../../context.js").ContextBase, api: import("../../apis.js").API) => (scrollId?: string, lastUpdatedTime?: number) => Promise<FetchPersonalTodoVerifyResponse>;
