import { default as React } from 'react'; import { TypographyProps } from '../../ui/typography'; type TitleNavigationBarProps = { hasBackground?: boolean; contentColor?: 'white' | 'gray'; type: 'title' | 'custom'; leftArea?: React.ReactNode; rightArea?: React.ReactNode[]; leftProps?: Omit; ref?: React.Ref; } & React.HTMLAttributes; declare const TitleNavigationBar: { ({ hasBackground, contentColor, type, leftArea, rightArea, leftProps, ref, ...props }: TitleNavigationBarProps): React.JSX.Element; displayName: string; }; export type { TitleNavigationBarProps }; export { TitleNavigationBar }; //# sourceMappingURL=index.d.ts.map