import * as React from 'react'; import { BaseComponentContext } from '@microsoft/sp-component-base'; import { IFilePickerResult } from './IFilePickerResult'; export interface IImagePickerProps { onFileSelected: (file: IFilePickerResult) => void; onDeleteFile: () => void; selectedFileUrl: string; context: BaseComponentContext; } /** * Renders an image picker component. * * @component * @example * ```tsx * * ``` */ export declare const ImagePicker: React.FunctionComponent; //# sourceMappingURL=ImagePicker.d.ts.map