import type { Ref } from 'vue'; export interface PreviewKeyboardOptions { visible: Ref; onClose: () => void; onNext?: () => void; onPrev?: () => void; } export declare function usePreviewKeyboard(options: PreviewKeyboardOptions): void;