export interface AccountantPortalProps { token: string; /** Absolute API origin used for the public portal endpoints + download links. */ apiBaseUrl: string; className?: string; /** Initial language (operator's configured locale); the accountant can switch. */ defaultLocale?: string; } export declare function AccountantPortal({ defaultLocale, ...props }: AccountantPortalProps): import("react").JSX.Element;