import type { HTMLAttributes, KeyboardEventHandler, ReactNode } from "react"; export interface ExpansionListProps extends HTMLAttributes { /** * This should be 2 or more expansion panel components. */ children: ReactNode; /** * The keydown event handler that allows for focusing the next/previous panel * as well as the first/last with keyboard shortcuts. This is provided by the * `usePanels` hook automatically. */ onKeyDown: KeyboardEventHandler; } /** * This component is honestly not very helpful since it does not apply any * styles. It is a simple wrapper for a `
` that updates the props to * require the `children` and `onKeyDown` props. */ export declare const ExpansionList: import("react").ForwardRefExoticComponent>;