/** * Copyright 2017-present Palantir Technologies, Inc. All rights reserved. * Licensed under the BSD-3 License as modified (the “License”); you may obtain * a copy of the license in the LICENSE and PATENTS files in the root of this * repository. */ import * as kss from "kss"; import { ICompiler, IFile, IKssPluginData, IPlugin } from "../client"; /** * The `KssPlugin` extracts [KSS doc comments](http://warpspire.com/kss/syntax/) from CSS code (or similar languages). * It emits an object keyed by the "styleguide [ref]" section of the comment. The documentation, markup, and modifiers * sections will all be emitted in the data. * * @see IKssExample */ export declare class KssPlugin implements IPlugin { private options; constructor(options?: kss.Options); compile(cssFiles: IFile[], dm: ICompiler): IKssPluginData; private parseFiles; }