import type { HTMLAttributes, ReactNode } from 'react';
import type { EdgeToolbarBaseProps } from '@xyflow/system';
/**
 * @inline
 */
export type EdgeToolbarProps = EdgeToolbarBaseProps & HTMLAttributes<HTMLDivElement> & {
    /**
     * An edge toolbar must be attached to an edge.
     */
    edgeId: string;
    children?: ReactNode;
};
//# sourceMappingURL=types.d.ts.map