import { ElementRef, Renderer } from '@angular/core'; import { Config } from '../../config/config'; import { Ion } from '../ion'; /** * @name Typography * @module ionic * @description * * The Typography component is a simple component that can be used to style the text color of any element. * The `ion-text` attribute should be added to the element in order to pass a color from the Sass `$colors` * map and change the text color of that element. * * @usage * * ```html *

H1: The quick brown fox jumps over the lazy dog

* *

H2: The quick brown fox jumps over the lazy dog

* *

H3: The quick brown fox jumps over the lazy dog

* *

H4: The quick brown fox jumps over the lazy dog

* *
H5: The quick brown fox jumps over the lazy dog
* *
H6: The quick brown fox jumps over the lazy dog
* *

* I saw a werewolf with a Chinese menu in his hand. * Walking through the streets of Soho in the rain. * He was looking for a place called Lee Ho Fook's. * Gonna get a big dish of beef chow mein. *

* *

* He's the hairy-handed gent who ran amuck in Kent. * Lately he's been overheard in Mayfair. * Better stay away from him. * He'll rip your lungs out, Jim. * I'd like to meet his tailor. *

* ``` * */ export declare class Typography extends Ion { constructor(config: Config, elementRef: ElementRef, renderer: Renderer); }