@difizen/magent-au
Version:
13 lines • 437 B
TypeScript
import type { UploadProps } from 'antd';
import type { FC } from 'react';
import './index.less';
interface AvatarUploadProps extends Omit<UploadProps, 'onChange'> {
AvatarRender: FC<{
imageUrl?: string;
}>;
value?: string;
onChange?: (value: string) => void;
}
export declare const AvatarUpload: (props: AvatarUploadProps) => import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=index.d.ts.map