react-native-keyboard-controller
Version:
Keyboard manager which works in identical way on both iOS and Android
10 lines (9 loc) • 347 B
TypeScript
import type { KeyboardToolbarTheme } from "../types";
type ToolbarContextType = {
theme: KeyboardToolbarTheme;
isPrevDisabled: boolean;
isNextDisabled: boolean;
};
export declare const ToolbarContext: import("react").Context<ToolbarContextType | undefined>;
export declare const useToolbarContext: () => ToolbarContextType;
export {};