/// <reference types="react" />
import { AuthenticationType } from "../types";
export declare type SendWyreProps = {
    children: JSX.Element | JSX.Element[];
    apiKey: string;
    secretKey: string;
    authenticationType: AuthenticationType;
    apiUrl: string;
    baseUrl: string;
    partnerId: string;
};
declare const SendWyre: {
    ({ apiKey, secretKey, authenticationType, partnerId, apiUrl, baseUrl, children, ...extras }: SendWyreProps): JSX.Element;
    displayName: string;
    defaultProps: {
        apiKey: null;
        secretKey: null;
        authenticationType: AuthenticationType;
        partnerId: null;
        baseUrl: string;
        apiUrl: string;
    };
};
export default SendWyre;
