import { ComponentProps } from "react"; import { Area } from "react-easy-crop"; import { UserAvatar } from "./elements/user-avatar.js"; //#region src/components/profile-image-editor.d.ts declare function checkImageUrl(url: string): Promise; declare function getCroppedImg(imageSrc: string, pixelCrop: Area): Promise; declare function ProfileImageEditor(props: { user: NonNullable['user']>; onProfileImageUrlChange: (profileImageUrl: string | null) => void | Promise; }): import("react/jsx-runtime").JSX.Element; //#endregion export { ProfileImageEditor, checkImageUrl, getCroppedImg }; //# sourceMappingURL=profile-image-editor.d.ts.map