import { HTMLAttributes } from 'react'; import type { PanelPosition } from '@xyflow/system'; /** * @expand */ export type PanelProps = HTMLAttributes & { /** * The position of the panel. * @default "top-left" */ position?: PanelPosition; }; /** * The `` component helps you position content above the viewport. * It is used internally by the [``](/api-reference/components/minimap) * and [``](/api-reference/components/controls) components. * * @public * * @example * ```jsx *import { ReactFlow, Background, Panel } from '@xyflow/react'; * *export default function Flow() { * return ( * * top-left * top-center * top-right * bottom-left * bottom-center * bottom-right * * ); *} *``` */ export declare const Panel: import("react").ForwardRefExoticComponent & { /** * The position of the panel. * @default "top-left" */ position?: PanelPosition; } & import("react").RefAttributes>; //# sourceMappingURL=index.d.ts.map