import React, { forwardRef } from 'react'; import { FormControlDesktop } from '@alfalab/core-components-form-control/desktop'; import { BaseInput, type BaseInputProps } from '../components/base-input'; import styles from './index.module.css'; export type InputDesktopProps = Omit; export const InputDesktop = forwardRef((restProps, ref) => ( ));