import React from 'react'; interface Context { id: string; created: Date; messageCount: number; } interface ChatDeleterProps { contexts: Context[]; onDelete: (contextId: string) => void; onClose: () => void; } export declare const ChatDeleter: React.FC; export {}; //# sourceMappingURL=ChatDeleter.d.ts.map