import type { ReactElement } from "react"; export type MediaViewerBarProps = { children?: ReactElement | ReactElement[]; hasSeparator?: boolean; "data-e2e-test-id"?: string; }; export declare function MediaViewerBar({ children, hasSeparator, "data-e2e-test-id": dataE2eTestId, ...ariaAttributes }: MediaViewerBarProps): ReactElement;