export declare class FpSettings {
    boothLabelColor: string;
    boothBorderColor: string;
    backgroundColor: string;
    boothBorderWidth: number;
    heatmapColors: string[];
    maxZoom?: number;
}
declare class Settings extends FpSettings {
    EXPO: string;
    borderless: boolean;
    wayfinding: boolean;
    colors: {
        booths: {
            default: string;
            defaultHold: string;
            defaultSold: string;
            seectedLight: null;
            selected: string;
            selectedBorder: null;
            wayfinding: {
                selected: string;
                selectedBorder: null;
            };
            empty: string;
        };
    };
}
declare let settings: Settings;
export default settings;
//# sourceMappingURL=settings.d.ts.map