/** * @fileoverview Entry point for registration module. * * This is the entry point for the registration component library. Use this file to export utilities, * constants or data structures that accompany your components. * * DO NOT use this file to export your components. Instead, use the recommended approaches * to consume components of this package as outlined in the `README.md`. */ export type { MatchFoundEventDetail } from "./components/registration-internal-matching/registration-internal-matching"; export * from "./registration"; export type { RegistrationState } from "./store/registration-store"; export { onChange as onRegistrationChange, registrationState, registrationStore } from "./store/registration-store";