export declare class FotoFestival { private _name; private _result; private _everyMonth; private _remark; constructor(name: string, result?: string, everyMonth?: boolean, remark?: string); getName(): string; getResult(): string; isEveryMonth(): boolean; getRemark(): string; toString(): string; toFullString(): string; }