import type { HandleProps } from './types';
/** The Handle component is the part of a node that can be used to connect nodes. */
declare const Handle: import("svelte").Component<HandleProps, {}, "">;
type Handle = ReturnType<typeof Handle>;
export default Handle;
