import { EventSourceDef } from '@fullcalendar/core/internal';
import { IcalExpander } from './ical-expander/IcalExpander.js';
interface ICalFeedMeta {
    url: string;
    format: 'icsproxied';
    internalState?: InternalState;
    baseUri?: string;
}
interface InternalState {
    iCalExpanderPromise: Promise<IcalExpander>;
    response: Response | null;
}
export declare const eventSourceDef: EventSourceDef<ICalFeedMeta>;
export {};
