import { CSSProperties } from 'react';
import { BackgroundVariant } from 'reactflow';
interface BackgroundProps {
    variant?: BackgroundVariant;
    gap?: number | [number, number];
    size?: number;
    lineWidth?: number;
    offset?: number;
    color?: string;
    style?: CSSProperties;
    className?: string;
    id?: string;
}
declare const _default: (props: BackgroundProps) => import("react/jsx-runtime").JSX.Element;
export default _default;
export { BackgroundVariant };
