import { TokenIdent } from '@csstools/css-tokenizer'; export declare enum MediaType { /** Always matches */ All = "all", Print = "print", Screen = "screen", /** Never matches */ Tty = "tty", /** Never matches */ Tv = "tv", /** Never matches */ Projection = "projection", /** Never matches */ Handheld = "handheld", /** Never matches */ Braille = "braille", /** Never matches */ Embossed = "embossed", /** Never matches */ Aural = "aural", /** Never matches */ Speech = "speech" } export declare function typeFromToken(token: TokenIdent): MediaType | false;