import React from 'react'; import './inline-input.scss'; export declare const useSynchronisationIfChangedFromOutside: (externalValue: T, setInternalValue: (value: T) => void) => T; interface Props { disabled?: boolean; value: string; isValid?: (value: string) => boolean; onChange: (value: string) => void; onChangeComplete?: (value: string) => void; onKeyboardIncrementAction?: () => string; onKeyboardDecrementAction?: () => string; className?: string; title?: string; textAlignLeft?: boolean; onValidityChanged?: (validity: boolean) => void; preventDefaultInvalidStyle?: boolean; minSize?: number; maxLength?: number; } declare const InlineInput: React.ForwardRefExoticComponent>; export default InlineInput; //# sourceMappingURL=InlineInput.d.ts.map