import React from 'react';
import { EventProps } from '../../events/Event/Event.types';
import { BreadcrumbProp } from '../../structure/Breadcrumbs/Breadcrumbs.types';
interface EventPageProps {
    event: EventProps;
    breadcrumbs?: BreadcrumbProp[];
    footerLinks?: Array<{
        title: string;
        url: string;
    }>;
}
export declare const EventPage: React.FunctionComponent<EventPageProps>;
export {};
