import React from 'react'; export type PendingInvite = { inviteId: string; evc?: string; }; export declare const usePendingInvite: () => PendingInvite | undefined; export declare const usePendingInviteState: () => { loading?: boolean | undefined; failedToDecode?: boolean | undefined; failureMessage?: string | undefined; }; export declare const clearPendingInvite: () => void; export type InviteProviderProps = { children: React.ReactNode; }; export declare const InviteProvider: React.FC;