import React, { PropsWithChildren } from "react"; export type CannyProviderProps = PropsWithChildren<{ appId: string; domain?: string; subdomain?: string; user?: { id: number | string; name: string; email: string; avatarURL?: string; created?: string; }; onIdentify?: () => void; }>; export declare const CannyProvider: React.FC;