import React from 'react';
export type UserData = {
    fname: string;
    lname: string;
    dob: string;
    gender: string;
    email: string;
    phone?: string;
    address?: string;
    city?: string;
    state?: string;
    zip?: string;
    country?: string;
    locale?: string;
    geolocation?: {
        lat: number;
        lon: number;
    };
    timezone?: string;
};
export type BehiveAppProps = {
    user?: UserData;
    product?: string;
    client?: string;
    channel?: string;
    isLoggedIn?: boolean;
    token: string;
    config: any;
    onBack?: () => void;
    onSchemeNavigate?: (scheme: string) => void;
    debug?: boolean;
};
declare function BehiveApp(props: BehiveAppProps): React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
export default BehiveApp;
//# sourceMappingURL=BehiveAppRN.d.ts.map