import { FC } from 'react';
import { BackgroundVariant } from 'reactflow';
export interface WorkflowBackgroundProps {
    variant?: BackgroundVariant;
    gap?: number;
    size?: number;
    color?: string;
    backgroundColor?: string;
    patternColor?: string;
}
/**
 * WorkflowBackground component for rendering canvas background
 * Provides configurable background patterns and colors
 */
export declare const WorkflowBackground: FC<WorkflowBackgroundProps>;
//# sourceMappingURL=WorkflowBackground.d.ts.map