import { UmbModalToken } from '../../modal/token/modal-token.js'; export type UmbModalAuthTimeoutConfig = { remainingTimeInSeconds: number; onLogout: () => void; onContinue: () => void; /** Called when the countdown reaches zero without any user interaction. */ onExpired: () => void; }; export declare const UMB_MODAL_AUTH_TIMEOUT: UmbModalToken;