import { IResponse, IContext } from '../../types'; import { IProject } from '..'; export interface IPatchDefaultProjectApiResponse { project: IProject; } export interface IPatchDefaultProjectApiRequest { description?: string; environment?: string; is_default?: boolean; name?: string; purpose?: string; } export type PatchDefaultProjectResponse = IResponse; export declare const patchDefaultProject: ({ httpClient, }: IContext) => ({ description, environment, is_default, name, purpose, }: IPatchDefaultProjectApiRequest) => Promise>;