import { HTMLAttributes, ForwardRefExoticComponent, RefAttributes } from 'react';
/**
* The ToolbarSeparator component is used for rendering a visual separation between items in a Toolbar.
*
* ```typescript
* import { Toolbar, ToolbarItem, ToolbarSeparator } from '@syncfusion/react-navigations';
* export default function App() {
* return (
*
*
*
*
*
* );
* }
* ```
*/
export interface ToolbarSeparatorProps {
/**
* Specifies an optional CSS class to apply to the toolbar separator.
* This is useful for reusing styling in a custom template.
*
* @default -
*/
className?: string;
/**
* Separator element within the toolbar.
*
* @private
* @default -
*/
element?: HTMLElement | null;
}
type IToolbarSeparatorProps = ToolbarSeparatorProps & HTMLAttributes;
export declare const ToolbarSeparator: ForwardRefExoticComponent>;
export default ToolbarSeparator;