/** * * SelectButton Design Tokens * * @module selectbutton * */ import type { ColorScheme as CS, DesignTokens, ExtendedCSS, ExtendedTokens } from '..'; /** * Design Token Sections */ export declare namespace SelectButtonTokenSections { interface Root { /** * Border radius of root * * @designToken selectbutton.border.radius */ borderRadius?: string; /** * Invalid border color of root * * @designToken selectbutton.invalid.border.color */ invalidBorderColor?: string; } /* Static Sections */ type ColorScheme = CS; type CSS = ExtendedCSS; type Extend = ExtendedTokens; } /** * * _SelectButton Design Tokens_ * * @group components * @module selectbutton * @see * --- --- * **Compatible Libraries** * * [Optimus UI](https://optimus.openng.org/theming/styled) * */ export interface SelectButtonDesignTokens extends DesignTokens { /** * Used to pass tokens of the root section */ root?: SelectButtonTokenSections.Root; }