/// <reference types="node" />
export declare const getAuthenticatedFetch: ({ provider, email, password, webId, fetch, }: {
provider: string;
email: string;
password: string;
webId?: string | undefined;
fetch?: typeof globalThis.fetch | undefined;
}) => Promise<typeof globalThis.fetch>;
export declare const createAccount: ({ username, password, email, provider, fetch, }: {
username: string;
password?: string | undefined;
email?: string | undefined;
provider: string;
fetch?: typeof globalThis.fetch | undefined;
}) => Promise<{
idp: string;
podUrl: string;
webId: string;
username: string;
password: string;
email: string;
}>;
Copilot made this proposal to resolve the issue and it works in this context :