import * as React from "react"; type Props = { children: React.ReactElement; /** * Whether we need to offset the keypad to account for the footer. */ hasFooter?: boolean; }; declare const TestKeypadContextWrapper: ({ children, hasFooter, }: Props) => React.ReactElement; export default TestKeypadContextWrapper;