import { STATUS } from '../common.js';
export default class InstallationResponse {
    status: STATUS;
    title?: string;
    message?: string;
    note?: Array<string>;
    footer?: string;
    addNote(...note: Array<string>): number;
}
