/**
 * Copyright 2020, Verizon Media
 * Licensed under the terms of the MIT license. See accompanying LICENSE.md file for terms.
 */
import React from 'react';
export declare const DnTitle: React.FC<DnTitleProps>;
export declare enum DnTitleColors {
    brand = "brand",
    grey = "grey",
    red = "red",
    orange = "orange",
    yellow = "yellow",
    lime = "lime",
    green = "green",
    sky = "sky",
    blue = "blue",
    purple = "purple",
    violet = "violet",
    pink = "pink"
}
export declare enum DnTitleShades {
    shade100 = "100",
    shade200 = "200",
    shade300 = "300",
    shade400 = "400",
    shade500 = "500",
    shade600 = "600",
    shade700 = "700",
    shade800 = "800"
}
export interface DnTitleProps {
    isWide?: boolean;
    color?: DnTitleColors;
    shade?: DnTitleShades;
    children?: React.ReactNode;
    className?: string;
}
//# sourceMappingURL=DnTitle.d.ts.map