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