import React from 'react'; import type { DividerProps } from '@planview/pv-uikit'; export type BaseToolbarSeparatorProps = DividerProps & { $inverse?: boolean; }; export declare const BaseToolbarSeparator: (props: BaseToolbarSeparatorProps) => React.JSX.Element; /** * * `import { ToolbarSeparator, BaseToolbarSeparator } from '@planview/pv-toolbar'` * * Implementation of the [Toolbar Separator specification](https://design.planview.com/components/toolbar/toolbar-components#toolbar-separators) * * The difference between `ToolbarSeparator` and `BaseToolbarSeparator` is that the base version will not auto hide on narrower views. * The `ToolbarSeparator` is aware of context and will inverse if inside of a `NavigationBar` component to use correct color * * You should always prefer `ToolbarSeparator` over the base version. */ export declare const ToolbarSeparator: ({ ...otherProps }: { [x: string]: any; }) => React.JSX.Element | null; //# sourceMappingURL=separator.d.ts.map