import * as CSS from "csstype"; import { Config } from "../utils/prop-config"; import { ResponsiveValue, Token } from "../utils"; export declare const textDecoration: Config; export interface TextDecorationProps { /** * The CSS `text-decoration` property */ textDecoration?: Token; /** * The CSS `text-decoration` property */ textDecor?: Token; /** * The CSS `text-decoration-color` property */ textDecorationColor?: Token; /** * The CSS `text-decoration-thickness` property */ textDecorationThickness?: ResponsiveValue; /** * The CSS `text-decoration-style` property */ textDecorationStyle?: ResponsiveValue; /** * The CSS `text-decoration-line` property */ textDecorationLine?: ResponsiveValue; /** * The CSS `text-underline-offset` property */ textUnderlineOffset?: ResponsiveValue; /** * The `text-shadow` property */ textShadow?: Token; } //# sourceMappingURL=text-decoration.d.ts.map