import { ITheme } from './ITheme';
type ThemeDictionary = {
    [key: string]: ITheme;
};
export declare const Themes: ThemeDictionary;
export declare function GetLineNumberStyle(theme: string): string;
export declare function GetBackgroundStyle(theme: string): string;
/**
 * Returns a CSS style string for code references
 * @param theme Defined theme we're getting the style for
 * @param styleName Style name of the code snippet (ex: Keyword vs Punctuation)
 * @returns string
 */
export declare function GetGenericStyle(theme: string, styleName: string): string;
export {};
