import { SystemStyleObject, ThemingProps } from "@chakra-v2/styled-system"; import { HTMLChakraProps } from "../system"; declare const useInputGroupStyles: () => Record; export { useInputGroupStyles }; export interface InputGroupProps extends HTMLChakraProps<"div">, ThemingProps<"Input"> { } export declare const InputGroup: import("../system").ComponentWithAs<"div", InputGroupProps>;