import type { IconProps } from "./Icon"; /** * The Inbox header's overflow menu. * * It rests at whatever `@trycourier/courier-ui-inbox` draws its own overflow icon in — the * kit's `inbox.header.actions.button.icon.color`, which is `black[500]` in light and * `white[500]` in dark. The preview is meant to be the Inbox, so the icon inverts with the * mode the way the Inbox's does rather than sitting at one fixed gray in both. * * The color goes to `Path` as `color`, not as a raw `fill` prop: `Path` only skips its * `courier-fill-ring` theme class when it is given a `color`, and that class outranks a `fill` * attribute. Passing `fill` straight through left the icon painting `--ring` — #0085FF in dark — * whatever color was asked for. * * `color` still overrides, for a caller that wants something else. */ export declare const MoreMenuIcon: ({ color, width, height, className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element; export default MoreMenuIcon;