import { BoxProps, InputElementProps } from '@chakra-ui/react';
import * as React from 'react';
export interface InputGroupProps extends BoxProps {
    startElementProps?: InputElementProps;
    endElementProps?: InputElementProps;
    startElement?: React.ReactNode;
    endElement?: React.ReactNode;
    children: React.ReactElement<InputElementProps>;
    startOffset?: InputElementProps['paddingStart'];
    endOffset?: InputElementProps['paddingEnd'];
}
export declare const InputGroup: React.ForwardRefExoticComponent<InputGroupProps & React.RefAttributes<HTMLDivElement>>;
