import { BoxProps } from '@mui/material';
import { ReactNode, FunctionComponent } from 'react';

interface EmojiWrapperProps extends BoxProps {
    checked?: boolean;
    disabled?: boolean;
    children: ReactNode;
}
declare const EmojiWrapper: FunctionComponent<EmojiWrapperProps>;

export { EmojiWrapper as default };
export type { EmojiWrapperProps };
