import type { MultiModalResponse, ResourceWithMetadata } from '@kui-shell/core'; export default interface File extends ResourceWithMetadata { apiVersion: any; kind: any; spec: { /** file as specified by user */ filepath: string; /** absolute path to file */ fullpath: string; /** file length */ size: number; }; } export declare function isFile(response: File | MultiModalResponse): response is File;