/** * Component for displaying a group of inputs (input, select, date Input, number Input, buttons) in a string. * Changes display styles by removing rounding between elements * * @author Brauer Ilya * * @date 2020-05-06 */ import * as React from 'react'; interface IGroupInputProps { isDivided?: boolean; widthMap?: { [key: number]: React.CSSProperties['width']; }; onBlur?: () => void; } export declare class GroupInput extends React.Component { get listOfExistChild(): React.ReactNode[]; render(): JSX.Element; } export {};