import { PublicKey } from "@solana/web3.js"; import type { SWRResponse } from "swr"; /** * Information about a Rewarder. */ export interface LegacyRewarderInfo extends Omit { rewarder: PublicKey; tokens: PublicKey[]; } export interface RewarderInfoRaw { rewarder: string; tokens: string[]; info?: { name: string; color: string; description: string; website: string; }; } /** * @deprecated Use useGithubRewarderRegistry instead. * Fetches all rewarders. * @returns */ export declare const useAllRewarders: () => Omit, "data"> & { data?: LegacyRewarderInfo[] | undefined; }; //# sourceMappingURL=useAllRewarders.d.ts.map