react-intlayer
Version:
Easily internationalize i18n your React applications with type-safe multilingual content management.
12 lines • 424 B
TypeScript
import { type FC, type HTMLAttributes } from 'react';
type ContentSelectorProps = {
onPress: () => void;
onHover?: () => void;
onUnhover?: () => void;
onClickOutside?: () => void;
pressDuration?: number;
isSelecting?: boolean;
} & Omit<HTMLAttributes<HTMLDivElement>, 'content'>;
export declare const ContentSelector: FC<ContentSelectorProps>;
export {};
//# sourceMappingURL=ContentSelector.d.ts.map