/**
 * CalendarBase properties
 */
interface ICalendarBase {
    /** Renders the calendar URL or content. */
    render(): string;
}
export default ICalendarBase;
