import { BackgroundProps } from '@xyflow/react'; import { NamedExoticComponent } from 'react'; export type XYBackgroundVariant = 'dots' | 'lines' | 'cross'; export type XYBackground = XYBackgroundVariant | BackgroundProps; export type XYBackgroundProps = { background: XYBackground; }; export declare const Background: NamedExoticComponent;