import type { SWRConfiguration, SWRResponse } from "swr"; import client from "../../client"; import type { GetProjectsIdPathParams, GetProjectsIdQueryParams, GetProjectsIdQueryResponse } from "../models/GetProjectsId"; export declare function getProjectsIdQueryOptions(id: GetProjectsIdPathParams["id"], params?: GetProjectsIdQueryParams, options?: Partial[0]>): SWRConfiguration; /** * @description Retrieve a carbon project by its project ID * @summary Project details * @link /projects/:id */ export declare function useGetProjectsId(id: GetProjectsIdPathParams["id"], params?: GetProjectsIdQueryParams, options?: { query?: SWRConfiguration; client?: Partial>[0]>; }): SWRResponse;