import React from 'react'; import { type FlexComponentProps, type FlexAllProps } from 'reflexy/styled'; export interface InputGroupProps extends FlexComponentProps { input: React.JSX.Element | FlexAllProps; error?: string | boolean | React.JSX.Element | undefined; } export default function InputGroup({ input, error, children, ...rest }: React.PropsWithChildren>): React.JSX.Element;