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