import React from "react"; interface HeaderBarProps extends React.HTMLAttributes { start?: React.ReactNode; middle?: React.ReactNode; end?: React.ReactNode; } declare const HeaderBar: (({ start, middle, end, className, ...props }: HeaderBarProps) => React.JSX.Element) & { original: ({ start, middle, end, className, ...props }: HeaderBarProps) => React.JSX.Element; originalName: string; displayName: string; } & { original: (({ start, middle, end, className, ...props }: HeaderBarProps) => React.JSX.Element) & { original: ({ start, middle, end, className, ...props }: HeaderBarProps) => React.JSX.Element; originalName: string; displayName: string; }; originalName: string; displayName: string; } & { createDecorator: (decorator: import("@webiny/react-composition/types").ComponentDecorator<(({ start, middle, end, className, ...props }: HeaderBarProps) => React.JSX.Element) & { original: ({ start, middle, end, className, ...props }: HeaderBarProps) => React.JSX.Element; originalName: string; displayName: string; }>) => (props: unknown) => React.JSX.Element; }; export { HeaderBar, type HeaderBarProps };