import { AthenaAuthLinkedAccount } from '@xylex-group/athena'; type SocialProvider = string; export interface LinkedAccountProps { account?: AthenaAuthLinkedAccount; isLinkDisabled?: boolean; provider: SocialProvider; } /** * Render a single linked social account row with provider info and link/unlink control. * * Fetches additional account information from the provider using the accountInfo API * and displays the provider name, account details, and a link/unlink button. * * @param account - The Athena linked-account record * @param provider - The provider id * @returns A JSX element containing the linked account row */ export declare function LinkedAccount({ account, isLinkDisabled, provider }: LinkedAccountProps): import("react").JSX.Element | null; export {};