import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface InputWrapperProps extends ComposableProps<'div'> { /** * The content of the input wrapper. */ children?: React.ReactNode; } /** * InputWrapper Component * * A composable wrapper component that contains all Input sub-components. * Provides spacing and layout for the input field and its associated elements. * * @public * * @example * ```tsx * * * Email * * Invalid email * * * ``` * * @remarks * - Wraps the HTML `
` element by default. * - Supports `asChild` prop to merge props with a custom child element. * - Provides default spacing between input elements. */ export declare const InputWrapper: React.ForwardRefExoticComponent>; //# sourceMappingURL=InputWrapper.d.ts.map