// Import types for each component import type { WOICheckBoxProps } from './dist/components/WOICheckBox/index.js'; import type { TextFieldProps } from './dist/components/WOITextField/index.js'; import type { WOIRadioButtonProps } from './dist/components/WOIRadioButton/index.js'; // Declare the components with their respective prop types declare const WOIRadioButton: React.FC; declare const WOITextField: React.FC; declare const WOICheckBox: React.FC; // Export the components export { WOIRadioButton, WOICheckBox, WOITextField };