import React from 'react'; import { StencilSize } from 'advanced-cropper/extensions/stencil-size'; import { CustomCropperProps, CustomCropperRef } from '../../types'; declare type UnavailableProps = 'sizeRestrictions' | 'aspectRatio'; export interface FixedCropperSettings { stencilSize: StencilSize; } export declare type FixedCropperProps = Omit, UnavailableProps>; export declare type FixedCropperRef = CustomCropperRef; export declare const FixedCropper: React.ForwardRefExoticComponent>; export {};