import type { Seat } from '$lib/office/Seat';
import type { VizFloor } from '../VizFloor';
import type { SeatingStats } from '$lib/seating/SeatingStats';
import { SelectedSeatViz } from './SelectedSeatViz';
import { SeatMarker } from './markers/SeatMarker';
export declare class SeatFitnessViz extends SelectedSeatViz {
    seatingStats: SeatingStats | null;
    constructor();
    setSeatingStats(seatingStats: SeatingStats): void;
    distanceColor(seatmarker: SeatMarker): string;
    personLabelColor(seatmarker: SeatMarker): "#223322" | "#aaa" | "#fff";
    distanceText(seat: Seat): string;
    render(viz: VizFloor, element: any, radius?: number): void;
}
