@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
9 lines (8 loc) • 494 B
TypeScript
import { HTMLProps, PolymorphicProps } from '../factory';
import { UseImageCropperProps } from './use-image-cropper';
import { ForwardRefExoticComponent, RefAttributes } from 'react';
export interface ImageCropperRootBaseProps extends UseImageCropperProps, PolymorphicProps {
}
export interface ImageCropperRootProps extends HTMLProps<'div'>, ImageCropperRootBaseProps {
}
export declare const ImageCropperRoot: ForwardRefExoticComponent<ImageCropperRootProps & RefAttributes<HTMLDivElement>>;