import { createPlugin } from "../type/PluginType"; declare type AuthInfo = { type: "basic"; username: string; password: string; } | { type: "bearer"; token: string; }; export declare const authPlugin: createPlugin; export {};