import { type HTMLAttributes, type ReactNode } from 'react'; import { type CssLength } from '../../../utils/css'; type RotatingPuzzleProps = Omit, 'title'> & { title?: ReactNode; imageBaseUrl?: string; pieceSize?: CssLength; initialScrambled?: boolean; showControls?: boolean; }; declare const RotatingPuzzle: ({ className, imageBaseUrl, initialScrambled, pieceSize, showControls, style, title, ...props }: RotatingPuzzleProps) => import("react/jsx-runtime").JSX.Element; export { RotatingPuzzle }; export type { RotatingPuzzleProps };