import type { FC, HTMLAttributes, Ref } from 'react'; export type DropdownMenuSeparatorProps = HTMLAttributes & { ref?: Ref; }; export declare const DropdownMenuSeparator: FC;