import "isomorphic-fetch"; export declare type Args = { idToken: string; token: string; }; declare type AppleLinkResponse = { success: boolean; } | { error: string; }; declare const appleLink: ({ idToken, token }: Args) => Promise; export default appleLink;