import { Token } from '../common/tokenizer'; /** * Trims `rawStyle` and splits it into tokens. * * @param rawStyle Style declaration block content inside curly bracket — `{` and `}` — * can be a single style declaration or a list of declarations. * * @returns Array of tokens supported for style declaration block. */ export declare const tokenizeStyleBlock: (rawStyle: string) => Token[];