import { type IFileAttachProps, type IUIComponentHandler, type UIComponent } from "../types"; type $$ComponentProps = { component: UIComponent & { properties: Partial; }; onPropertyChange: (updates: Partial<{ properties?: string | object; name?: string; access?: string; eventHandler?: IUIComponentHandler; }>) => void; forConstructor?: boolean; }; declare const FileAttachProps: import("svelte").Component<$$ComponentProps, {}, "">; type FileAttachProps = ReturnType; export default FileAttachProps;