import { ViewStyle } from 'react-native'; /** * Styles for menu/dropdown surfaces. * * The dropdown sits at level 2 — floating over content — and takes its * background, border and shadow from the theme's elevation ladder. It used to * index `theme.colors.surface[4]`, which is a mid-grey step of a 10-shade * *palette* rather than a semantic background, so light-mode dropdowns rendered * grey while popovers next to them rendered white. */ export declare function useMenuStyles(): { dropdown: ViewStyle; item: ViewStyle; itemHovered: ViewStyle; itemPressed: ViewStyle; itemSelected: ViewStyle; itemDisabled: ViewStyle; itemDanger: ViewStyle; itemDangerPressed: ViewStyle; label: ViewStyle; divider: ViewStyle; startSection: ViewStyle; endSection: ViewStyle; /** The resolved level-2 token, for callers that need the raw colors. */ surfaceToken: import("../../core/theme").SurfaceToken; };