/// interface Props { client: string; chicoToken: string; callToAction?: string; onClose?: (result: 'success' | 'fail') => void; } declare const ConnectAccountsButton: ({ client, chicoToken, callToAction, onClose, }: Props) => JSX.Element; export { ConnectAccountsButton };