import { ReactNode, HTMLAttributes, CSSProperties } from '../../preact/adapter.ts'; import { Rotation } from '@embedpdf/models'; type RotateProps = Omit, 'style'> & { children: ReactNode; documentId: string; pageIndex: number; rotation?: Rotation; scale?: number; style?: CSSProperties; }; export declare function Rotate({ children, documentId, pageIndex, rotation: rotationOverride, scale: scaleOverride, style, ...props }: RotateProps): import("preact").JSX.Element | null; export {};