import React from 'react'; import './style'; interface IProps { /** * @description The Email address of the display */ email?: React.ReactNode; /** * @description The work Time of the display */ workTime?: React.ReactNode; /** * @description The address of the display */ address?: React.ReactNode; /** * @description ClassName of custom root element */ className?: string; /** * @description Customize the style of the root element */ style?: React.CSSProperties; } declare const _default: React.NamedExoticComponent; export default _default;