@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
9 lines (8 loc) • 488 B
text/typescript
import { HandleProps } from '@zag-js/image-cropper';
import { HTMLProps, PolymorphicProps } from '../factory';
import { ForwardRefExoticComponent, RefAttributes } from 'react';
export interface ImageCropperHandleBaseProps extends PolymorphicProps, HandleProps {
}
export interface ImageCropperHandleProps extends HTMLProps<'div'>, ImageCropperHandleBaseProps {
}
export declare const ImageCropperHandle: ForwardRefExoticComponent<ImageCropperHandleProps & RefAttributes<HTMLDivElement>>;