import React from "react"; export declare function PageHeader({ children, actions, navigation, className, inactive, profile, }: { /** * Actions to be displayed on the right side of the header. Elements * should be styled as buttons. */ actions?: React.ReactNode; /** * The main content of the page header. It will be displayed prominently. For simple pages, providing a h1 will suffice. */ children: React.ReactNode; className?: string; /** * Indicates whether the page header is inactive or not. When set to true, the page header is visually inactive */ inactive?: boolean; /** * Navigation links to be displayed on the left side of the header. * Contents should be an unordered list with items being links or * buttons. Specify `selected` for the active link (as well as adding * `aria-current="page"` for accessibility). */ navigation?: React.ReactNode; /** * Indicates whether the page header is a profile page header or not. When set to true, the page header will visually center the title and actions at mobile breakpoints. */ profile?: boolean; }): React.JSX.Element; //# sourceMappingURL=PageHeader.d.ts.map