//#region src/cli/lib/bunnyApi.d.ts type BunnyFetchInit = { body?: unknown; method?: string; }; declare const bunnyFetch: (accountApiKey: string, path: string, init?: BunnyFetchInit) => Promise; declare const bunnyJson: (accountApiKey: string, path: string, init?: BunnyFetchInit) => Promise; declare const listItems: (payload: unknown) => T[]; declare const hostnameOf: (pullZone: { Hostnames?: Array<{ Value?: string; }>; Name?: string; }) => string; declare const maskKey: (key: string) => string; //#endregion export { BunnyFetchInit, bunnyFetch, bunnyJson, hostnameOf, listItems, maskKey }; //# sourceMappingURL=bunnyApi.d.ts.map