// Type definitions for moonstone/Skinnable import { SkinnableProps as ui_Skinnable_SkinnableProps } from "@enact/ui/Skinnable"; type Omit = Pick>; type Merge = Omit> & N; export interface SkinnableProps extends ui_Skinnable_SkinnableProps { /** * Select a skin by name by specifying this property. * * Available Moonstone skins are `"dark"` (default) and `"light"` . This may be changed at runtime. All components already use their defaults, but a skin may be changed via this prop or by using `Skinnable` directly and a config object. * * Example: * ```