import type { createInputColorPalette } from './createInputPalette.js'; type DropdownBasePalette = ReturnType; type DropdownPaletteConfig = { contentBorder?: string; itemActiveBg?: string; itemActiveFg?: string; itemActiveRing?: string; itemHoverBg?: string; itemHoverFg?: string; itemPressedBg?: string; itemPressedFg?: string; itemFg?: string; itemBadgeBg?: string; itemBadgeFg?: string; itemBadgeBorder?: string; }; export declare const createDropdownPalette: (palette: DropdownBasePalette, config?: DropdownPaletteConfig) => { readonly ring: string; readonly content: { readonly border: string; readonly ring: string; }; readonly trigger: { readonly default: { readonly fg: string; readonly border: "transparent"; readonly bg: string; readonly placeholder: string; readonly icon: string; }; readonly hover: { readonly bg: "transparent"; readonly fg: string; readonly border: "transparent"; readonly placeholder: string; readonly icon: string; }; readonly focus: { readonly fg: string; readonly border: "transparent"; readonly bg: string; readonly placeholder: string; readonly icon: string; }; }; readonly item: { readonly fg: string; readonly active: { readonly bg: string; readonly fg: string; readonly ring: string; }; readonly hover: { readonly bg: string; readonly fg: string; }; readonly pressed: { readonly bg: string; readonly fg: string; }; readonly badge: { readonly bg: string; readonly fg: string; readonly border: string; }; }; }; export {}; //# sourceMappingURL=createDropdownPalette.d.ts.map