/**
 * @uplink-protocol/calendar-controller
 *
 * A powerful calendar and date picker controller for building date selection UI components.
 * This module is part of the Odyssey Uplink Protocol.
 *
 * @packageDocumentation
 */
import { CalendarControllerClass } from './controller';
import { CalendarOptions } from './interfaces';
/**
 * Factory function to create a calendar controller
 * @param options Calendar configuration options
 * @returns A new CalendarControllerClass instance
 */
export declare function CalendarController(options?: CalendarOptions): CalendarControllerClass;
export * from "./controller";
export * from "./interfaces";
export * from "./types";
export * from "./services";
export * from "./utils";
