import { PostEventError } from '@tma.js/bridge'; import { either as E } from 'fp-ts'; export type HideKeyboardError = PostEventError; /** * Hides the on-screen keyboard, if it is currently visible. Does nothing if the keyboard is * not active. * @since Mini Apps v9.1 */ export declare const hideKeyboardFp: import('../../with-checks/withChecksFp.js').WithChecksFp<() => E.Either, true, never>; /** * @see hideKeyboardFp */ export declare const hideKeyboard: import('../../with-checks/withChecksFp.js').WithChecks<() => E.Either, true, never>;