import type { MaskSource } from '../workflows/workflow.spec.js';
import type { WebGPUContext } from './index.js';
/**
 * Builds a mask source
 * @param division - number of division to slice the geometry by
 * @param context - The current rendering context
 * @returns The mask source
 */
export default function buildMask(division: number, context: WebGPUContext): MaskSource;
