export interface PhoneNumberProps {
    /** The phone number. Expect the following +16174659898 or 6174659898 */
    number: string;
    /** Details around contacting the provided phone number */
    details?: string | object;
}
declare const PhoneNumber: (props: PhoneNumberProps) => any;
export default PhoneNumber;
