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