import React from 'react'; import '../g.scss'; declare function LabelInputAndDelect(props: IInputAndDel): React.JSX.Element; export default LabelInputAndDelect; export interface IInputAndDel { title?: string | number; value?: string | number; change?: Function; size?: string; paddingSize?: string; wrapStyle?: React.CSSProperties; }