/// export interface CreateEventStepperProps { steps: { stepTitle: string; stepImage: string; stepHeading: string; stepColor: string; stepFont: string; stepDescription: string; }[]; } declare const CreateEventStepper: ({ steps }: CreateEventStepperProps) => JSX.Element; export default CreateEventStepper;