import { ExplorerConfig } from '@brftech/filex-core'; import { VueElementConstructor } from 'vue'; export { ExplorerConfig } export declare const FilexConnectionsElement: VueElementConstructor< { locale: string; theme: string; apiBase: string; endpoint: string; config: ExplorerConfig | null; initialTab: string; } & { closable?: string | boolean | undefined; } & { onClose?: ((...args: any[]) => any) | undefined; onError?: ((...args: any[]) => any) | undefined; onChanged?: ((...args: any[]) => any) | undefined; }>; /** Public classes — useful for tests / programmatic instantiation. */ export declare const FilexElement: VueElementConstructor< { timeZone: string; locale: string; theme: string; apiBase: string; endpoint: string; config: ExplorerConfig | null; uiProfile: string; } & { trashVisible?: string | boolean | undefined; sidenav?: string | boolean | undefined; connections?: string | boolean | undefined; } & { onError?: ((...args: any[]) => any) | undefined; "onShare-created"?: ((...args: any[]) => any) | undefined; "onFile-opened"?: ((...args: any[]) => any) | undefined; "onUpload-progress"?: ((...args: any[]) => any) | undefined; "onSelection-change"?: ((...args: any[]) => any) | undefined; }>; export { }