import { type ComponentProps } from 'react'; import { type ScenarioCardProps } from './types'; export interface ScenarioCardElementProps extends ScenarioCardProps, Omit, 'children'> { /** Callback ref for the root element (used by ScenarioCardDraggable) */ rootRef?: (el: HTMLDivElement | null) => void; /** Callback ref for the drag handle (used by ScenarioCardDraggable) */ handleRef?: (el: HTMLDivElement | null) => void; } export declare const ScenarioCard: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; //# sourceMappingURL=ScenarioCard.d.ts.map