import React from "react"; import { RCTKeyboardToolbarGroupView } from "../../bindings"; import { colors } from "./colors"; import { Background, Content, Done, Next, Prev } from "./compound/components"; import type { KeyboardToolbarProps } from "./types"; /** * `KeyboardToolbar` is a component that is shown above the keyboard with `Prev`/`Next` buttons from left and * `Done` button from the right (to dismiss the keyboard). Allows to add customizable content (yours UI elements) in the middle. * * @param props - Component props. * @returns A component that is shown above the keyboard with `Prev`/`Next` and `Done` buttons. * @see {@link https://kirillzyusko.github.io/react-native-keyboard-controller/docs/api/components/keyboard-toolbar|Documentation} page for more details. * @example * ```tsx * * * * ``` */ declare const KeyboardToolbar: React.FC & { Background: typeof Background; Content: typeof Content; Prev: typeof Prev; Next: typeof Next; Done: typeof Done; Group: typeof RCTKeyboardToolbarGroupView; }; export { colors as DefaultKeyboardToolbarTheme, KeyboardToolbarProps }; export default KeyboardToolbar;