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