import { FC, PropsWithChildren, ReactNode } from "react"; export declare type IClientProviderProps = PropsWithChildren<{ logo?: ReactNode; link: string; }>; export declare const ClientProvider: FC;