import type { SWRConfiguration, SWRResponse } from "swr"; import client from "../../client"; import type { GetProjectsQueryParams, GetProjectsQueryResponse } from "../models/GetProjects"; export declare function getProjectsQueryOptions(params?: GetProjectsQueryParams, options?: Partial[0]>): SWRConfiguration; /** * @description Retrieve an array of carbon projects filtered by desired query parameters * @summary List projects * @link /projects */ export declare function useGetProjects(params?: GetProjectsQueryParams, options?: { query?: SWRConfiguration; client?: Partial>[0]>; }): SWRResponse;