export declare abstract class ThemeInterface {
    DEFAULT_CSS_PATH: string;
    abstract getCss(): any;
    abstract css(): string;
}
