import type { Ref, ComputedRef } from 'vue';
export interface KeyboardNavigationOptions {
    showFullscreenScanner: Ref<boolean>;
    isProcessingPdf: Ref<boolean>;
    currentDisplayPage: Ref<any>;
    pageManager: {
        currentPage: Ref<any>;
        pages: ComputedRef<readonly any[]>;
        selectPage: (pageId: string) => void;
    };
    onCloseScanner: () => void;
    onDiscardProcessedImage: () => void;
}
export declare function useKeyboardNavigation(options: KeyboardNavigationOptions): {};
//# sourceMappingURL=useKeyboardNavigation.d.ts.map