/** @jsxImportSource @emotion/react */ import React from 'react'; import { MerchantSite } from '../types'; export interface AccountLinkContainerProps { site?: MerchantSite; children: React.ReactNode; hide_title?: boolean; } declare function AccountLinkContainer({ site, children, hide_title, }: AccountLinkContainerProps): import("@emotion/react/jsx-runtime").JSX.Element; export default AccountLinkContainer;