import type { CSSProperty } from '../CSSProperty'; import type { CSSKeywordValue } from '../cssom'; import type { DisplayObject } from '../../display-objects'; /** * should * * @see https://developer.mozilla.org/zh-CN/docs/Web/CSS/visibility * @see https://www.w3.org/TR/CSS21/visufx.html#visibility * */ export declare class CSSPropertyVisibility implements Partial> { calculator(name: string, oldParsed: CSSKeywordValue, parsed: CSSKeywordValue, object: DisplayObject): CSSKeywordValue; }