import { LiffModule } from '@liff/use'; import { getEvents } from './getEvents'; import { showEventCreationModal } from './showEventCreationModal'; export * from './getEvents'; export * from './showEventCreationModal'; export interface CalendarMethods { getEvents: typeof getEvents; showEventCreationModal: typeof showEventCreationModal; } export interface ExtendLiffCore { calendar: CalendarMethods; } export declare class CalendarModule extends LiffModule { get name(): string; install(): CalendarMethods; } export declare const module: CalendarModule;