import { Exhibition } from "../event/types";
import { Session } from "../sessions/types";
import { PublicEventItem, ResponsePaginationType } from "./types";
export declare const _fetchAllPublicEvents: (basePath: string, token: string, nbPage?: number, params?: string) => Promise<ResponsePaginationType<PublicEventItem>>;
export declare const _fetchPublicExhibitions: (basePath: string, token: string, eventId: string, nbPage?: number, params?: string) => Promise<ResponsePaginationType<Exhibition>>;
export declare const _fetchPublicAgenda: (basePath: string, token: string, eventId: string, nbPage?: number, params?: string) => Promise<ResponsePaginationType<Session>>;
