import React from 'react';
import { TextStyle, ViewStyle } from 'react-native';
export interface THEME_APPEARANCE {
    colors: {
        background: ViewStyle['backgroundColor'] | TextStyle['color'];
        muted: ViewStyle['backgroundColor'] | TextStyle['color'];
        separatorColor: ViewStyle['backgroundColor'] | TextStyle['color'];
        body: ViewStyle['backgroundColor'] | TextStyle['color'];
        primary: ViewStyle['backgroundColor'] | TextStyle['color'];
        secondary: ViewStyle['backgroundColor'] | TextStyle['color'];
    };
}
export declare const THEMES: {
    appearances: {
        [key: string]: THEME_APPEARANCE;
    };
};
export declare const ThemeContext: React.Context<THEME_APPEARANCE>;
