/**
 * @poppinss/colors
 *
 * (c) Harminder Virk <virk@adonisjs.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
import { Colors } from './Base';
/**
 * Stringify class returns a plain string in a format of function
 * calls. The output is reliable and easy to test.
 */
export declare class Stringify extends Colors {
    private chain;
    /**
     * Perform the given transformation. The base class will
     * invoke this method
     */
    protected transform(transformation: string): this;
    protected transform(transformation: string, text: string | number): string;
}
