import React, { ReactNode } from 'react';
import { BoxProps } from '@mantine/core';
export type Props = {
    children?: ReactNode;
} & BoxProps;
declare const LikeWrapper: ({ children, className, ...boxProps }: Props) => React.JSX.Element;
declare const ShareWrapper: ({ children, className, ...boxProps }: Props) => React.JSX.Element;
declare const CommentWrapper: ({ children, className, ...boxProps }: Props) => React.JSX.Element;
declare const SaveWrapper: ({ children, className, ...boxProps }: Props) => React.JSX.Element;
export { LikeWrapper, ShareWrapper, CommentWrapper, SaveWrapper };
