bananas-commerce-admin
Version:
What's this, an admin for apes?
27 lines (26 loc) • 646 B
TypeScript
import React from "react";
export interface AddressLineProps {
value?: string;
icon?: JSX.Element;
bold?: boolean;
}
export declare const AddressLine: React.FC<AddressLineProps>;
export interface AddressInfo {
name?: string;
givenName?: string;
familyName?: string;
companyName?: string;
careOf?: string;
streetAddress: string;
streetAddress2?: string;
postalCode: string;
city: string;
region?: string;
countryCode: string;
email?: string;
phone?: string;
}
export interface AddressInfoProps {
info: AddressInfo;
}
export declare const AddressInfo: React.FC<AddressInfoProps>;