import { BANNER_STATUS } from '../common.js';
export default class Banner {
    type: string;
    text: string;
    status?: BANNER_STATUS;
    constructor(text: string, status?: BANNER_STATUS);
}
