import React from "react"; type PrimaryNavContainerProps = { "data-e2e-test-id"?: string; children: React.ReactNode; }; export declare function PrimaryNavContainer({ children, "data-e2e-test-id": dataE2eTestId, }: PrimaryNavContainerProps): React.ReactElement; export type PrimaryNavProps = { "aria-label": string; children: React.ReactNode; }; export declare function PrimaryNav({ "aria-label": ariaLabel, children, }: PrimaryNavProps): React.ReactElement; export {};