import { MaybeRefOrGetter } from 'vue'; import { RotatePlugin } from '../../lib/index.ts'; import { Rotation } from '@embedpdf/models'; /** * Hook to get the raw rotate plugin instance. */ export declare const useRotatePlugin: () => import('@embedpdf/core/vue').PluginState; /** * Hook to get the rotate plugin's capability API. * This provides methods for rotating the document. */ export declare const useRotateCapability: () => import('@embedpdf/core/vue').CapabilityState>; /** * Hook that provides reactive rotation state and methods for a specific document. * @param documentId Document ID (can be ref, computed, getter, or plain value) */ export declare const useRotate: (documentId: MaybeRefOrGetter) => { rotation: Readonly>; provides: import('vue').ComputedRef; };