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