import { default as React } from 'react'; import { IconProps } from '../../../icons/src/types'; interface PageNavigationBarProps { contentColor?: 'white' | 'gray'; hasBackground?: boolean; header?: Omit; leftArea?: PageNavigationBarBackButtonProps; rightArea?: Omit; showTitle?: boolean; title?: Omit; } declare function PageNavigationBar({ hasBackground, contentColor, showTitle, header, title, leftArea, rightArea, }: PageNavigationBarProps): React.JSX.Element; declare namespace PageNavigationBar { var Header: ({ children, className, hasBackground, contentColor, ...props }: PageNavigationBarHeaderProps) => React.JSX.Element; var Title: ({ children, className, contentColor, ...props }: PageNavigationBarTitleProps) => React.JSX.Element; var BackButton: ({ className, contentColor, size, ref, ...props }: PageNavigationBarBackButtonProps & { ref?: React.Ref; }) => React.JSX.Element; var RightArea: ({ children, className, ...props }: PageNavigationBarRightAreaProps) => React.JSX.Element; } interface PageNavigationBarComponentProps { contentColor?: 'white' | 'gray'; hasBackground?: boolean; } type PageNavigationBarHeaderProps = React.HTMLAttributes & PageNavigationBarComponentProps; type PageNavigationBarTitleProps = React.HTMLAttributes & PageNavigationBarComponentProps; type PageNavigationBarBackButtonProps = React.ButtonHTMLAttributes & Partial & Omit; type PageNavigationBarRightAreaProps = React.HTMLAttributes & PageNavigationBarComponentProps; export type { PageNavigationBarProps }; export { PageNavigationBar }; //# sourceMappingURL=index.d.ts.map