import { PropsWithChildren } from 'react'; export type UserInformationI = { name: string; phone: string; email: string; src_img?: string; title: string; }; export declare const UserInformation: ({ name, phone, email, src_img, title, children, }: UserInformationI & PropsWithChildren) => import("react").JSX.Element;