import type { Nabi } from '../editor/index.js'; import { type Settle } from './parts/settle.js'; export declare const KEYBOARD_TOP_VAR = "--nabi-keyboard-top"; export declare const KEYBOARD_BOTTOM_VAR = "--nabi-keyboard-bottom"; export interface StickyOptions { readonly root: HTMLElement; readonly surface: HTMLElement; readonly chrome?: HTMLElement; readonly settle?: Settle; readonly nabi?: Nabi; readonly iosBranch?: boolean; } export interface Sticky { aim(): void; unmount(): void; } export declare function mountSticky(options: StickyOptions): Sticky; //# sourceMappingURL=sticky.d.ts.map