export declare const xcodeDefault: {
    base: string;
    inherit: boolean;
    rules: ({
        background: string;
        token: string;
        foreground?: undefined;
    } | {
        foreground: string;
        token: string;
        background?: undefined;
    })[];
    colors: {
        'editor.foreground': string;
        'editor.background': string;
        'editor.selectionBackground': string;
        'editor.lineHighlightBackground': string;
        'editorCursor.foreground': string;
        'editorWhitespace.foreground': string;
    };
};
