import React from "react"; export declare type ImagePickerProps = React.PropsWithChildren<{ size: number; image: string; onReset: () => void; onSelect: () => void; }>; export declare const ImagePicker: React.FC;