import { TypeNotice } from '../interfaces/result-types/TypeNotice';
/**
 * The equivalent of [Type notice](https://api.stackexchange.com/docs/types/notice).<br>
 * Represents a Notice on a [[Post]].
 */
export declare class Notice {
    body: string | null;
    creationDate: Date | null;
    ownerUserId: number | null;
    constructor(notice?: TypeNotice);
}
