import { type BlockNavigationAlertProps } from "./BlockNavigationAlert"; export interface FormikBlockNavigationProps extends Omit { /** Force the navigation block regardless of Formik dirty state. */ isDirty?: boolean; } declare const FormikBlockNavigation: { ({ isDirty, ...otherProps }: FormikBlockNavigationProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export { FormikBlockNavigation }; export type { BlockNavigationAlertProps };