import { Endpoint } from '../../types/endpoint'; import { ProjectObject } from '../../types/object'; export declare type getProjectsParameters = Record; export declare const getProjects: Endpoint; export declare type getProjectsResponse = { projects: ProjectObject[]; }; export declare type getProjectParameters = { projectCode: string; admin?: boolean; }; export declare const getProject: Endpoint; export declare type getProjectResponse = ProjectObject; export declare type postProjectParameters = { code: string; name: string; url: string; iconUrl: string; bannerUrl: string; ruleUrl: string; status: string; userId: number; desc?: string; }; export declare const postProject: Endpoint; export declare type postProjectResponse = Record; export declare type patchProjectParameters = { projectCode: string; url?: string; iconUrl?: string; bannerUrl?: string; ruleUrl?: string; desc?: string; status?: string; name?: string; isOAuthAble?: boolean; redirectUrls?: string[]; }; export declare const patchProject: Endpoint; export declare type patchProjectResponse = Record; export declare type deleteProjectParameters = { projectCode: string; }; export declare const deleteProject: Endpoint; export declare type deleteProjectResponse = Record; //# sourceMappingURL=project.d.ts.map