import React from 'react'; import type { Post } from '../../hooks'; interface ReactionsToolbarProps { post: Post; } export declare const ReactionsToolbar: ({ post }: ReactionsToolbarProps) => React.JSX.Element; declare const defaultStyles: (theme: import("../BrandConfigProvider").Theme) => readonly ["ReactionsToolbar", import("../BrandConfigProvider/styles/createStyles").NamedStyles<{ reactionToolbarContainer: { flex: number; flexDirection: "row"; }; addReactionButton: { height: number; width: number; }; emojiPickerContainer: { backgroundColor: string; height: string; }; reactionContainer: { paddingRight: number; }; reactionContent: { height: number; }; reactionLabel: { marginVertical: number; paddingTop: number; fontSize: number; lineHeight: number; }; }>]; declare module './../BrandConfigProvider/styles/types' { interface ComponentStyles extends ComponentNamedStyles { } } export type ReactionsToolbarStyle = NamedStylesProp; export {};