/** * INTERNAL TYPES - Do not remove this file * * This file re-exports internal component prop types that include all internal properties. * It's used by: * 1. @hero-design/rn-work-uikit package - provides access to InternalMultiSelectProps, * InternalSingleSelectProps, etc. for advanced component customization * 2. Internal API exports - referenced by index.internal.ts for type definitions * 3. Build tools - enables proper TypeScript compilation for internal API consumers * * The public types (types.ts) omit internal props to keep the external interface clean, * but this internal version is essential for extending the library with full type safety. */ import { DatePickerProps } from './components/DatePicker/index.internal'; import type { SingleSelectProps, MultiSelectProps } from './components/Select/index.internal'; import { TimePickerProps } from './components/TimePicker/index.internal'; export * from './types'; export { SingleSelectProps, MultiSelectProps, DatePickerProps, TimePickerProps, };