import type { ValuesOf } from '../../Types/ValuesOf'; /** * `Appearance` - The `Appearance` object is used to describe the visual style of a control. * * @public */ export declare const Appearance: { /** * `default` - The default appearance style. * @default */ readonly Default: "default"; /** * `outline` - The outlined appearance style. */ readonly Outline: "outline"; /** * `plain` - The plain appearance style. */ readonly Plain: "plain"; /** * `soft` - The soft appearance style. */ readonly Soft: "soft"; /** * `solid` - The soft appearance style. */ readonly Solid: "solid"; }; /** * @public */ export type Appearance = ValuesOf; //# sourceMappingURL=Appearance.d.ts.map