import { APIId } from "../types/id"; import APIMessage, { APIMessageClock, APIMessageText, APIMessageTimer, DateTimeStyle, TimerStyle } from "../types/message"; import { TimeOfDay } from "../types/timer"; import Collection from "../util/Collection"; declare class MessageText { name: string; text: string; constructor(textData: APIMessageText); } declare class MessageClock { name: string; date: DateTimeStyle; time: DateTimeStyle; is24Hours: boolean; constructor(clockData: APIMessageClock); } declare class MessageTimer { name: string; hour: TimerStyle; minute: TimerStyle; second: TimerStyle; millisecond: TimerStyle; allowsOverrun: boolean; duration?: number; timeOfDay?: number; period?: TimeOfDay; startTime?: number; endTime?: number; constructor(timerData: APIMessageTimer); } declare class Message { uuid: string; name: string; index: number; message: string; tokens: Collection; theme: APIId; constructor(message: APIMessage); } export default Message; //# sourceMappingURL=Message.d.ts.map