import { BoxProps } from '../box';
import * as React from 'react';
import { InputSize } from '../input';
interface InputGroupPropsBase {
    size?: InputSize;
    children: React.ReactNode;
}
export declare type InputGroupProps = InputGroupPropsBase & BoxProps;
export {};
