import type { PanelPosition } from '@xyflow/system'; import { ParentProps, JSX } from 'solid-js'; export interface PanelProps extends JSX.HTMLAttributes { /** Set position of the panel * @example 'top-left' | 'top-center' | 'top-right' | 'bottom-left' | 'bottom-center' | 'bottom-right' */ position?: PanelPosition; } export declare function Panel(_p: ParentProps): JSX.Element; //# sourceMappingURL=index.d.ts.map