import { type ActionButtonElement, type ActionButtonProps } from "../../utils/createActionButton.js"; export declare const useComposerSend: () => (() => void) | null; export declare namespace ComposerPrimitiveSend { type Element = ActionButtonElement; /** * Props for the ComposerPrimitive.Send component. * Inherits all button element props and action button functionality. */ type Props = ActionButtonProps; } /** * A button component that sends the current message in the composer. * * This component automatically handles the send functionality and is disabled * when sending is not available (e.g., when the thread is running, the composer * is empty, or not in editing mode). * * @example * ```tsx * * Send Message * * ``` */ export declare const ComposerPrimitiveSend: import("react").ForwardRefExoticComponent & import("react").ButtonHTMLAttributes & { asChild?: boolean; }, "ref"> & { render?: import("react").ReactElement | undefined; } & import("react").RefAttributes, "ref"> & import("react").RefAttributes>; //# sourceMappingURL=ComposerSend.d.ts.map