import React from "react";
import { MemberDetail } from "../types/member";
export interface MemberCardProps {
    member: MemberDetail;
    onUpdated: (member: MemberDetail) => void;
}
export interface MemberDetailCardFormValues {
    given_name: string;
    family_name: string;
    email: string;
    phone: string;
    street_address: string;
    street_address2: string;
    postal_code: string;
    city: string;
    country_code: string;
    region: string;
    care_of: string;
    billing_address?: Partial<{
        street_address: string;
        street_address2: string;
        postal_code: string;
        city: string;
        country_code: string;
        region: string;
        care_of: string;
    }>;
}
export declare const MemberDetailCard: React.FC<MemberCardProps>;
