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