import React, { PropsWithChildren, ReactNode } from 'react'; /** * @description * A container for the primary actions on a list or detail page * * @example * ```ts * import { ActionBar } from '@vendure/admin-ui/react'; * * export function MyComponent() { * return ( * Optional left content}> * * * ); * } * ``` * * @docsCategory react-components */ export declare function ActionBar(props: PropsWithChildren<{ leftContent?: ReactNode; }>): React.JSX.Element;