import { ChatRuntime } from "../../../app/Types/firebase"; import React from "react"; export interface CustomButtonInterface { label?: string; type: "default" | "intent" | "link" | "hidden"; viewValue?: ""; iconLink?: ""; payload?: any; } declare const ChatSettingsPanel: (props: { localRuntimeData: ChatRuntime; setLocalData: any; id: any; fromClient?: boolean; }) => React.JSX.Element; export default ChatSettingsPanel;