import { h } from 'preact'; import type { AttentionInfo } from "../../types/options"; interface Props { open?: boolean; attentions: AttentionInfo[]; setOpened: (isOpened: boolean) => void; onChangeIndex: (index: number) => void; } export declare function AttentionDropdownMenu({ attentions, setOpened, onChangeIndex }: Props): h.JSX.Element; export {};