/** * Octopus UI - public entry point. * * A dark-first design system built as a theme layer over MUI and organized with * Atomic Design. Import tokens, the theme, and components from here, or from the * more specific subpaths (e.g. `@/atoms/Button`) for the smallest bundles. */ export * from './tokens'; export * from './theme'; export * from './atoms'; export * from './molecules'; export * from './organisms'; export * from './templates'; export * from './pages'; export type { ComponentMeta, AtomicLevel, Classification, PropMeta } from './registry/types';