/** * [WHO]: InputGroup layout primitives for composing inputs, addons, and buttons. * [FROM]: React, registry/basic/button, registry/basic/input, registry/basic/textarea, registry/lib/utils. * [TO]: sparkdesign package consumers; Showcase; CLI registry copies. * [HERE]: registry/basic/input-group.tsx — tokenized shadcn-derived input composition primitive. * * [PROTOCOL]: * 1. Keep this P3 header in sync when the public contract changes. * 2. Update module AGENTS.md (P2) and root AGENTS.md (P1) when boundaries change. * 3. Follow design tokens and explicit type exports. */ import * as React from "react"; import { type VariantProps } from "class-variance-authority"; import { Button } from "./button"; import { type InputProps } from "./input"; import { type TextareaProps } from "./textarea"; declare function InputGroup({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element; declare const inputGroupAddonVariants: (props?: ({ align?: "inline-end" | "inline-start" | "block-end" | "block-start" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; declare function InputGroupAddon({ className, align, ...props }: React.ComponentProps<"div"> & VariantProps): import("react/jsx-runtime").JSX.Element; declare const inputGroupButtonVariants: (props?: ({ size?: "xs" | "sm" | "icon-xs" | "icon-sm" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; declare function InputGroupButton({ className, type, variant, size, ...props }: Omit, "size"> & VariantProps): import("react/jsx-runtime").JSX.Element; declare function InputGroupText({ className, ...props }: React.ComponentProps<"span">): import("react/jsx-runtime").JSX.Element; declare function InputGroupInput({ className, ...props }: InputProps): import("react/jsx-runtime").JSX.Element; declare function InputGroupTextarea({ className, ...props }: TextareaProps): import("react/jsx-runtime").JSX.Element; export { InputGroup, InputGroupAddon, InputGroupButton, InputGroupText, InputGroupInput, InputGroupTextarea, };