import { Globals } from "./index"; /** * The **`-moz-appearance`** CSS property is used in Gecko (Firefox) to display an element using platform-native styling based on the operating system's theme. * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :---------: | :---------: | :---------: | :----------: | :-: | * | **1** _-x-_ | **1** _-x-_ | **3** _-x-_ | **12** _-x-_ | No | * * @see https://developer.mozilla.org/docs/Web/CSS/appearance */ export type AppearanceProperty = Globals | "none";