import { EventAction } from '@botonic/core';
import type { DebugEventConfig } from '../types';
export interface HandoffSuccessDebugEvent {
    action: EventAction.HandoffSuccess;
    handoff_queue_name: string;
    handoff_is_queue_open: boolean;
    handoff_has_auto_assign: boolean;
    handoff_note_id: string;
}
export declare const HandoffSuccess: (props: HandoffSuccessDebugEvent) => import("react/jsx-runtime").JSX.Element;
export declare const getHandoffSuccessEventConfig: (data: HandoffSuccessDebugEvent) => DebugEventConfig;
