import type { AuthContext, FileWithMetadata, FileListItem } from '../types.js'; export declare function getFileById(_auth: AuthContext, fileId: string): Promise; export declare function listFiles(_auth: AuthContext, options: { projectId?: string; folderId?: string | null; workspaceId?: string; status?: 'active' | 'archived'; limit?: number; offset?: number; }): Promise<{ files: FileListItem[]; total: number; hasMore: boolean; }>; //# sourceMappingURL=file-queries.d.ts.map