import { SvelteComponentTyped } from "svelte"; import type { ISelect } from '../interfaces/ISelect'; declare const __propDef: { props: { transTitle?: string; transTitleBottom?: string; image?: string; textButtonSave?: string; textButtonSecond?: string; textEventTitle?: string; textStartDate?: string; textStartTime?: string; textRegistrationDeadline?: string; textEndTime?: string; textEndDate?: string; textVenue?: string; textAddress?: string; textCountry?: string; textState?: string; textCity?: string; textDescription?: string; textOrganizer?: string; textSponsors?: string; textTopic?: string; textEventType?: string; textTag?: string; textTitleDetails?: string; textTitlePrice?: string; textTitleSchedule?: string; textTitleUploadPhoto?: string; textCustomFields?: string; organizer?: ISelect[]; sponsors?: ISelect[]; eventTypes?: ISelect[]; eventTopic?: ISelect[]; eventTags?: ISelect[]; }; events: { [evt: string]: CustomEvent; }; slots: { actions: {}; }; }; export declare type CreateEventProps = typeof __propDef.props; export declare type CreateEventEvents = typeof __propDef.events; export declare type CreateEventSlots = typeof __propDef.slots; export default class CreateEvent extends SvelteComponentTyped { } export {};