import { GroupProps } from 'antd/es/input';
import { FC } from 'react';
import { INPUT_GROUP } from '../../../Types';
export interface IInputGroup {
    ctype: typeof INPUT_GROUP;
    props: GroupProps;
}
declare const InputGroup: FC<IInputGroup>;
export default InputGroup;
