export default prismTheme;
declare namespace prismTheme {
    namespace plain {
        let color: string;
        let backgroundColor: string;
    }
    let styles: ({
        types: string[];
        style: {
            color: string;
            fontStyle: string;
            opacity?: undefined;
        };
    } | {
        types: string[];
        style: {
            color: string;
            fontStyle: string;
            opacity: string;
        };
    } | {
        types: string[];
        style: {
            color: string;
            fontStyle?: undefined;
            opacity?: undefined;
        };
    })[];
}
