import { TRequestConfigs } from '../../configs'; declare function method(requestConfigs: TRequestConfigs): Promise<{ status: number; sortOrder: number; etag: string; id: string; projectId: string; title: string; startDate: string; dueDate: string; timeZone: string; isFloating: boolean; reminders: any[]; exDate: any[]; completedTime: string; completedUserId: number; priority: number; items: any[]; modifiedTime: string; deleted: number; createdTime: string; creator: number; kind: string | null; content?: string | undefined; isAllDay?: boolean | undefined; progress?: number | undefined; columnId?: string | undefined; }[]>; export declare const apiMethod: { method: typeof method; route: "/project/all/completedInAll"; }; export {};