import React from 'react'; import { AuthorNameProps, ContainerProps, ContentProps, DateTimeProps, ImageWrapProps, TitleProps, NewsTitleProps } from './types'; export declare const AuthorName: ({ children, ...otherProps }: AuthorNameProps) => React.JSX.Element; export declare const Container: ({ children, ...otherProps }: ContainerProps) => React.JSX.Element; export declare const Content: ({ children, className, ...otherProps }: ContentProps) => React.JSX.Element; export declare const DateTime: ({ children, ...otherProps }: DateTimeProps) => React.JSX.Element; export declare const Image: ({ children, ...otherProps }: { [x: string]: any; children: any; }) => React.JSX.Element; export declare const ImageWrap: ({ children, ...otherProps }: ImageWrapProps) => React.JSX.Element; export declare const NewsTitle: ({ children, ...otherProps }: NewsTitleProps) => React.JSX.Element; export declare const Title: ({ children, ...otherProps }: TitleProps) => React.JSX.Element; export declare const TitleWrapper: ({ children, ...otherProps }: { [x: string]: any; children: any; }) => React.JSX.Element; export declare const ResponsiveWrap: import("styled-components").StyledComponent<"div", any, {}, never>;