import { UmbPropertyEditorUIStaticFilePickerElement } from '../static-file-picker/property-editor-ui-static-file-picker.element.js'; /** * Decides whether a static file can be picked as an image. * @param {string} path The server file path of the item. * @param {boolean} isFolder Whether the item is a folder. * @param {Array | undefined} imageFileTypes The allowed image file extensions (without leading dots). When undefined or empty, any file is allowed. * @returns {boolean} True if the item can be picked. */ export declare function isPickableImageFile(path: string, isFolder: boolean, imageFileTypes: Array | undefined): boolean; export declare class UmbPropertyEditorUIStaticImageFilePickerElement extends UmbPropertyEditorUIStaticFilePickerElement { #private; private _imageFileTypes?; constructor(); } export { UmbPropertyEditorUIStaticImageFilePickerElement as element }; export default UmbPropertyEditorUIStaticImageFilePickerElement; declare global { interface HTMLElementTagNameMap { 'umb-property-editor-ui-static-image-file-picker': UmbPropertyEditorUIStaticImageFilePickerElement; } }