import type { CSSUnitValue } from '../cssom'; export interface ParsedFilterStyleProperty { name: string; params: CSSUnitValue[]; } export declare const parseParam: (css: string) => CSSUnitValue; export declare function parseFilter(filterStr?: string): ParsedFilterStyleProperty[];