import { createEventBus } from './event-bus'; export interface FormEventBusEvents { submit: never; } export type FormEventBus = ReturnType; /** * Creates a new event bus to be used with the `FormInputs` component. */ export const createFormEventBus = createEventBus;