import type { SharedInputProps } from '@contractspec/lib.ui-kit-core/interfaces'; import * as React from 'react'; export type InputProps = SharedInputProps & React.ComponentPropsWithoutRef<'input'> & { ref?: React.Ref; }; declare function Input({ className, type, ref, ...props }: InputProps): import("react/jsx-runtime").JSX.Element; export { Input };