import React from 'react'; import { Post } from '../../hooks'; interface PostProps { post: Post; onComment?: () => void; } export declare const PostItem: ({ post, onComment }: PostProps) => React.JSX.Element; declare const defaultStyles: (theme: import("../BrandConfigProvider").Theme) => readonly ["Post", import("../BrandConfigProvider/styles/createStyles").NamedStyles>]; declare module './../BrandConfigProvider/styles/types' { interface ComponentStyles extends ComponentNamedStyles { } } export type PostStyle = NamedStylesProp; export {};