import { Addon } from './shared.js'; interface HerokuClient { get(path: string, options?: any): Promise; post(path: string, options?: any): Promise; } declare const _default: (heroku: HerokuClient) => { addon: (app: string, cluster?: string) => Promise; all: (app: string) => Promise; }; export default _default;