emoji-picker-react
Version:
Emoji Picker component for React Applications on the web
10 lines (9 loc) • 446 B
TypeScript
import * as React from 'react';
import { PickerConfig, PickerConfigInternal } from '../../config/config';
declare type Props = PickerConfig & Readonly<{
children: React.ReactNode;
}>;
export declare function PickerConfigProvider({ children, ...config }: Props): JSX.Element;
export declare function useSetConfig(config: PickerConfig): PickerConfigInternal;
export declare function usePickerConfig(): PickerConfigInternal;
export {};