import type { ProcessedRenderArgs } from './types';
import type { LayoutFeature } from './util';
export declare function renderAlignment({ ctx, feat, renderArgs, colorMap, colorContrastMap, charWidth, charHeight, defaultColor, canvasWidth, }: {
    ctx: CanvasRenderingContext2D;
    feat: LayoutFeature;
    renderArgs: ProcessedRenderArgs;
    colorMap: Record<string, string>;
    colorContrastMap: Record<string, string>;
    charWidth: number;
    charHeight: number;
    defaultColor: boolean;
    canvasWidth: number;
}): void;
