import React, { type CSSProperties } from "react"; import "./assets/moncomptepro.css"; export type FranceConnectButtonProps = FranceConnectButtonProps.WithUrl | FranceConnectButtonProps.WithOnClick; export declare namespace FranceConnectButtonProps { type Common = { id?: string; className?: string; classes?: Partial>; style?: CSSProperties; }; export type WithUrl = Common & { url: string; onClick?: never; }; export type WithOnClick = Common & { url?: never; onClick: React.MouseEventHandler; }; export {}; } /** @see */ export declare const MonCompteProButton: React.MemoExoticComponent>>; export default MonCompteProButton; declare const addMonCompteProButtonTranslations: (params: { lang: string; messages: Partial<{ "what is service": string; "new window": string; }>; }) => void; export { addMonCompteProButtonTranslations };