export declare function useInputPaddings(): { paddingInlineStart: string | number | undefined; paddingInlineEnd: string | number | undefined; }; interface InputGroupAddon { content: React.ReactNode; initialContentWidth?: number | string; interactive?: boolean; padding?: 'none' | 'sm' | 'md'; } export interface InputGroupProps { addonStart?: InputGroupAddon; addonEnd?: InputGroupAddon; disabled?: boolean; className?: string; children?: React.ReactNode; } export declare function InputGroup({ addonStart, addonEnd, disabled, className, children, }: InputGroupProps): import("react").JSX.Element; export {}; //# sourceMappingURL=InputGroup.d.ts.map