import { ChatAPI } from '../../api/ChatAPI'; import { default as React } from 'react'; import { KamanFile } from '../../api/FileExplorerAPI'; import { CustomRenderers } from '../../renderers'; interface FileExplorerButtonProps { onSelect?: (file: KamanFile) => void; chatApi?: ChatAPI; baseUrl: string; disabled?: boolean; customRenderers?: CustomRenderers; } export declare const FileExplorerButton: React.FC; interface FileExplorerProps { onSelect?: (file: KamanFile) => void; chatApi?: ChatAPI; baseUrl?: string; customRenderers?: CustomRenderers; } declare const FileExplorer: React.FC; export default FileExplorer; export type { CustomRenderers, FileRendererProps } from '../../renderers';