import React from 'react';
export interface EmojiPickerGroupProps {
    children: React.ReactNode;
    title?: string;
    className?: string;
}
export declare function EmojiPickerGroup({ children, className }: EmojiPickerGroupProps): import("react/jsx-runtime").JSX.Element;
