import { Reservation } from '$lib/office/reservations/Reservation';
import { Seat } from '$lib/office/Seat';
import { Person } from '$lib/people/Person';
export declare class SeatMarker {
    seat: Seat;
    reservation: Reservation;
    seated: Person | null;
    constructor(seat: Seat, seated: Person | null);
    infobox(extra?: string): string;
    personLabel(): string;
    personLabelColor(): "#223322" | "#aaa";
    seatFillColor(): "#99ccff" | "#eee";
    seatStrokeColor(): "#ccc" | "#336699";
    isSeated(): boolean;
}
