import type React from 'react'; import type { BaseInputProps } from '../types'; export type InputComponent = React.ForwardRefExoticComponent>; export declare const registerInput: (type: string, component: InputComponent) => InputComponent; export declare const getInputComponent: (type: string) => InputComponent | undefined;