import { StoryEntryType } from './StoryEntryType';
import { Sentence } from './Parsing/Sentence';
import { GameRoom } from './World/GameRoom';
export declare class StoryEntry {
    constructor(EntryType: StoryEntryType, Text: string, sentence?: Sentence, room?: GameRoom);
    EntryType: StoryEntryType;
    Text: string;
    Sentence?: Sentence;
    Room?: GameRoom;
}
