import { GraphQLOperation } from '../../shared/types'; interface OperationsListProps { operations: GraphQLOperation[]; selectedId: string | null; onSelect: (id: string | null) => void; } export declare function OperationsList({ operations, selectedId, onSelect, }: OperationsListProps): import("react/jsx-runtime").JSX.Element; export {};