import { RuntimeFn } from '../../../node_modules/@vanilla-extract/recipes/dist/vanilla-extract-recipes.cjs.d.js'; declare const dropdownStyles: { dropdown: RuntimeFn<{ /** * Specifies the padding inside the dropdown menu. This prop accepts one of the following values: "base" or "none". * @default base */ padding: { base: { padding: `var(--${string})` | `var(--${string}, ${string})`; }; none: { padding: number; }; }; }>; item: RuntimeFn<{ /** * Indicates if the item is selected. * This affects the visual style, such as highlight or marking. * * @default false */ selected: { true: { backgroundColor: `var(--${string})` | `var(--${string}, ${string})`; ":hover": { backgroundColor: `var(--${string})` | `var(--${string}, ${string})`; }; }; }; }>; }; export { dropdownStyles };