/// <reference types="react" />
import { BaseInput } from '../../types/input.base';
export type CustomInputValueType = any;
export interface CustomInputProps extends Omit<BaseInput, 'onChangeValue' | 'ref'> {
    type: 'custom';
    element: React.ElementType;
    allowObject?: boolean;
    [key: string]: any;
}
