import type { HTMLAttributes, ReactElement } from "react";
export interface OverflowSeparatorProps extends HTMLAttributes {
children?: never;
focusable?: boolean;
}
export declare const OverflowSeparator: {
(props: OverflowSeparatorProps): ReactElement;
defaultProps: {
focusable: boolean;
};
};