/** Notes
 *
 * 1. color
 *     Use text-<color>/<opacity> to set color property, there's not -
 *     only ready-to-use color such as red-500, lime-500, or -
 *     neutral-950. You can use _any_ color and they also can -
 *     be processed and mixed the opacity just like other color.
 *
 * 2. font-stretch
 *    font-stretch-* utility is merged directly with font-* -
 *    utility for shorter class names, using `scretch` key -
 *    is also available. Using font-stretch-* still available.
 */
import type { Property } from '@tenoxui/moxie';
import type { Classes } from '@tenoxui/types';
export declare const typography: {
    property: (sizing: number) => Property;
    classes: Classes;
};
