import React from "react";
export type DomainEventSelectPaneProps = {
    isFocused: boolean;
    isLoading: boolean;
    error?: string | null;
    domainEvents: any[];
    selectedDomainEventIndex: number | null;
    setSelectedDomainEventIndex: (value: number) => void;
};
export declare const VISIBLE_LINES_SUBTRACT = 6;
export declare const DomainEventSelectPane: React.FC<DomainEventSelectPaneProps>;
