// @flow import * as React from "react"; export type ContextType = {| +expandable: boolean, +expanded: boolean, +handleToggleSection: () => void, +onKeyDownHandler: (ev: SyntheticKeyboardEvent) => void | Promise, |}; export type CardSectionContextType = React.Context; declare export default CardSectionContextType;