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<ChatDeleterProps>;
export {};
//# sourceMappingURL=ChatDeleter.d.ts.map