/** * KeypadContext provides a way to the Keypad and Perseus Renderers to * communicate. * * The StatefulKeypadContextProvider wraps the application * while KeypadContext.Consumer wraps things that need this state: * - mobile keypad usages * - Perseus Renderers (Server/Item/Article) */ import * as React from "react"; import type { KeypadContextType } from "./types"; export declare const KeypadContext: React.Context; type Props = React.PropsWithChildren; export declare function StatefulKeypadContextProvider(props: Props): React.JSX.Element; export {};