import React from 'react';
export interface SlackSelectorProps {
    scrollHeight?: string;
    frequent?: string[];
    removeEmojis?: string[];
    onSelect?: (id: string) => void;
}
export declare const SlackSelector: React.FC<SlackSelectorProps>;
export declare const defaultProps: Required<SlackSelectorProps>;
export default SlackSelector;
