interface SelectionBackdropProps { focusable: boolean; startX: number; endX: number; height: number; isSynchronizedSelection: boolean; interactable: boolean; onDragMove?: (x: number) => void; hasTopLabels?: boolean; hasBottomLabels?: boolean; } export declare const SelectionBackdrop: ({ startX, endX, height, focusable, interactable, onDragMove, isSynchronizedSelection, hasTopLabels, hasBottomLabels, }: SelectionBackdropProps) => import("react/jsx-runtime").JSX.Element; export {};