import { ReactElement, ReactNode, ComponentProps, ForwardRefExoticComponent, PropsWithoutRef, RefAttributes } from 'react'; declare type InputNodeProps = Omit, 'children'>; declare type YobtaProps = { after?: ReactElement; before?: ReactElement; caption?: ReactNode; error?: ReactNode; fancy?: boolean; }; export declare type YobtaInputProps = YobtaProps & InputNodeProps; declare type InputFactory = (config: Partial) => ForwardRefExoticComponent & RefAttributes>; export declare const createInput: InputFactory; export {}; //# sourceMappingURL=createInput.d.ts.map