import { ComponentProps } from 'react'; export interface ChatPanelTriggerProps extends ComponentProps<'button'> { /** * Whether the minimized bubble can be dragged around the viewport. The * dropped position is kept across minimize/restore cycles. Shadows the * (useless here) native `draggable` attribute. * @defaultValue false */ draggable?: boolean; } export declare function ChatPanelTrigger({ className, children, onClick, onPointerDown, style, draggable, 'aria-label': ariaLabel, ref, ...props }: ChatPanelTriggerProps): import("react/jsx-runtime").JSX.Element | null; export declare namespace ChatPanelTrigger { var displayName: string; } //# sourceMappingURL=chat-panel-trigger.d.ts.map