import type { BrDensity } from '../global.types'; export type ButtonColorMode = 'dark'; export type ButtonDensity = BrDensity; export type ButtonEmphasis = 'primary' | 'secondary' | 'tertiary'; export type ButtonShape = 'circle' | 'block' | 'pill'; export type ButtonType = 'button' | 'reset' | 'submit'; export type AriaHasPopup = 'true' | 'menu' | 'listbox' | 'tree' | 'grid' | 'dialog';