/** * * PickList Design Tokens * * @module picklist * */ import type { ColorScheme as CS, DesignTokens, ExtendedCSS, ExtendedTokens } from '..'; /** * Design Token Sections */ export declare namespace PickListTokenSections { interface Root { /** * Gap of root * * @designToken picklist.gap */ gap?: string; } interface Controls { /** * Gap of controls * * @designToken picklist.controls.gap */ gap?: string; } /* Static Sections */ type ColorScheme = CS; type CSS = ExtendedCSS; type Extend = ExtendedTokens; } /** * * _PickList Design Tokens_ * * @group components * @module picklist * @see * --- --- * **Compatible Libraries** * * [Optimus UI](https://optimus.openng.org/theming/styled) * */ export interface PickListDesignTokens extends DesignTokens { /** * Used to pass tokens of the root section */ root?: PickListTokenSections.Root; /** * Used to pass tokens of the controls section */ controls?: PickListTokenSections.Controls; }