import { ComponentProps, ReactNode } from "react"; import { InternalProps, OmitInternalProps, StyledComponentProps } from "../../shared"; import { ResponsiveProp } from "../../styling"; declare const DefaultElement = "div"; export interface InnerInputGroupProps extends InternalProps, StyledComponentProps { /** * React children. */ children: ReactNode; /** * Whether or not the input group is disabled. */ disabled?: boolean; /** * Whether or not the input group take up the width of its container. */ fluid?: ResponsiveProp; /** * Whether or not the input group is readonly. */ readOnly?: boolean; } export declare function InnerInputGroup({ as, children, disabled, fluid, forwardedRef, readOnly, ...rest }: InnerInputGroupProps): JSX.Element; export declare namespace InnerInputGroup { var defaultElement: string; } /** * An input group combines an input component with addons. * * [Documentation](https://orbit.sharegate.design/?path=/docs/input-group--default-story) */ export declare const InputGroup: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare type InputGroupProps = ComponentProps; export {};