import { Dispatch, SetStateAction } from "preact/compat"; import { State } from "@teamhanko/hanko-frontend-sdk"; interface Props { checkedItemID?: string; setCheckedItemID: Dispatch>; flowState: State<"profile_init">; onState(state: State): Promise; } declare const ListSessionsAccordion: ({ checkedItemID, setCheckedItemID, flowState, onState, }: Props) => import("preact").JSX.Element; export default ListSessionsAccordion;