import { Application } from '@gpa-gemstone/application-typings'; import * as React from 'react'; export interface IExternalPageProps { OnClick: (e: React.MouseEvent) => void; /** * Roles allowed to see this item */ RequiredRoles?: Application.Types.SecurityRoleName[]; /** * Text label for the nav item */ Label?: string; /** * Icon to display next to the label */ Icon?: React.ReactNode; } declare const ExternalPage: (props: React.PropsWithChildren) => JSX.Element | null; export default ExternalPage;