import { default as React } from 'react'; import { PurpleIcon } from '../../icons/src/types'; import { BaseNavigationProps } from './BaseNavigation'; import { NavigationContentColor } from './constant'; type NavigationProps = Pick & { contentColor: NavigationContentColor; hasBackgroundColor: boolean; leftArea?: { type: 'backIcon'; handleClickButton: () => void; }; rightArea?: { type: 'closeIcon'; handleClickButton: () => void; } | { type: 'icon'; children: PurpleIcon; handleClickButton: () => void; } | { type: 'text'; children: string; handleClickButton: () => void; }; }; declare const Navigation: React.FC; export type { NavigationProps }; export { Navigation }; //# sourceMappingURL=Navigation.d.ts.map