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