import type ky from "ky"; import type { Plugin } from "../types"; type KyHooks = NonNullable[0]["hooks"]>; declare const createKyHooks: ({ client, plugins, }: { client: typeof ky; plugins?: Plugin[] | undefined; }) => KyHooks; export default createKyHooks;