import { h } from 'preact'; import type { FormStateDispatcher } from "../../hooks/popup/useFormState"; import type { CalendarInfo } from "../../types/options"; interface Props { attentions: CalendarInfo[]; selectedAttentionId?: string; formStateDispatch: FormStateDispatcher; } export declare function AttentionsSelector({ attentions, selectedAttentionId, formStateDispatch }: Props): h.JSX.Element; export {};