import React from "react"; import type { EventPublicationChatSummary, TicketingFormChatPanelProps } from "../../components/FormChatAssistant/FormChatAssistant.types"; export type CreateIngressoPageProps = TicketingFormChatPanelProps & { summary?: EventPublicationChatSummary; }; declare const CreateIngressoPage: React.FC; export default CreateIngressoPage;