import React from 'react'; import { BioProps, ContainerProps, ContentWrapProps, EmailProps, ImageContainerProps, ImageProps, NameProps, PositionProps, SocialMediasWrapProps, TextWrapProps, TitleProps } from './types'; export declare const Bio: ({ children, ...otherProps }: BioProps) => React.JSX.Element; export declare const Email: ({ children, ...otherProps }: EmailProps) => React.JSX.Element; export declare const Name: ({ children, ...otherProps }: NameProps) => React.JSX.Element; export declare const Position: ({ children, ...otherProps }: PositionProps) => React.JSX.Element; export declare const Title: ({ children, ...otherProps }: TitleProps) => React.JSX.Element; export declare const Container: ({ children, ...otherProps }: ContainerProps) => React.JSX.Element; export declare const ImageContainer: ({ children, mb, mr }: ImageContainerProps) => React.JSX.Element; export declare const ContentWrap: ({ children }: ContentWrapProps) => React.JSX.Element; export declare const ImageWrap: ({ children, size, ...otherProps }: ImageProps) => React.JSX.Element; export declare const SocialMediasWrap: ({ children }: SocialMediasWrapProps) => React.JSX.Element; export declare const TextWrap: ({ children }: TextWrapProps) => React.JSX.Element;