import type { FlexBoxProps } from '@xylabs/react-flexbox'; import type { ReactNode } from 'react'; import type { Location } from 'react-router-dom'; import type { ErrorEx } from '../ErrorEx.ts'; import type { ErrorAlertProps } from './ErrorAlert.tsx'; export interface ErrorRenderProps extends FlexBoxProps { customError?: ReactNode; error?: ErrorEx; errorContext?: string; noErrorDisplay?: boolean; noReAuth?: boolean; onCancel?: () => void; scope?: string; slotProps?: { alert?: ErrorAlertProps; }; useLocation?: () => Location; } //# sourceMappingURL=Props.d.ts.map