/** * INTERNAL API - Do not remove this file * * This file re-exports components with their full internal APIs (including internal props). * It's used by: * 1. @hero-design/rn-work-uikit package - provides access to internal props like * TextInputComponent and groupStyleEnabled for component customization * 2. Internal type definitions - exports InternalMultiSelectProps, InternalSingleSelectProps, etc. * 3. Build tools - configured in rn-work-uikit's tsconfig, rollup, and babel configs * * The public API (main index.ts) omits internal props to keep the external interface clean, * but this internal version is essential for extending the library with advanced features. */ import Select from './components/Select/index.internal'; import DatePicker from './components/DatePicker/index.internal'; import TimePicker from './components/TimePicker/index.internal'; export * from '.'; export type { MultiSelectProps, SingleSelectProps, DatePickerProps, TimePickerProps, } from './types.internal'; export { Select, DatePicker, TimePicker };