export declare class Notice {
    nid: number;
    opstuid: string;
    publishtime: string;
    content: string;
    publisher: string;
    constructor(notice?: Partial<Notice>);
    static createNotice(notice?: Partial<Notice>): Notice;
}
export default Notice;
