import React from "react"; import type { KeyboardExtenderProps } from "../../types"; import type { PropsWithChildren } from "react"; /** * A component that embeds its children into the keyboard thus enhancing keyboard functionality. * * @param props - Component props. * @returns A view component that renders inside the keyboard above all system buttons. * @example * ```tsx * * * * * * ``` */ declare const KeyboardExtender: (props: PropsWithChildren) => React.JSX.Element; export default KeyboardExtender;