import React from 'react'; import { ParentType, Post } from '../../hooks'; interface PostProps { post: Post; parentType: ParentType; styles?: ShowPostMenuButtonStyle; } export declare const ShowPostMenuButton: ({ post, parentType, styles: instanceStyles, }: PostProps) => React.JSX.Element | null; declare const defaultStyles: (theme: import("../BrandConfigProvider").Theme) => readonly ["ShowPostMenuButton", import("../BrandConfigProvider/styles/createStyles").NamedStyles<{ iconButton: { width: number; }; }>]; declare module './../BrandConfigProvider/styles/types' { interface ComponentStyles extends ComponentNamedStyles { } } export type ShowPostMenuButtonStyle = NamedStylesProp; export {};