import { Dispatch, SetStateAction } from "react"; import { ThirdPartyAPIEntryProps } from "../../../types"; interface UseThirdPartyAPIEndpoints { thirdPartyAPIEndpoints: ThirdPartyAPIEntryProps[]; setThirdPartyAPIEndpoints: Dispatch>; addThirdPartyAPIEndpoint: (newValues: ThirdPartyAPIEntryProps) => void; removeThirdPartyAPIEndpoint: (id: number) => void; } export declare const useThirdPartyAPIEndpoints: () => UseThirdPartyAPIEndpoints; export {};