import { ACTIONS } from "./types";
declare const runpod: (key: string) => ({ action, id, count }: {
    action: ACTIONS;
    id?: string | undefined;
    count?: number | undefined;
}) => Promise<any> | "Please provide a pod id" | "Please provide a gpu id" | undefined;
export default runpod;
