@pagamio/frontend-commons-lib
Version:
Pagamio library for Frontend reusable components like the form engine and table container
11 lines (10 loc) • 384 B
TypeScript
interface SessionExpiryModalProps {
show: boolean;
countdown: number;
loading: boolean;
onDismiss: () => void;
onRenew: () => void;
}
declare const SessionExpiryModal: ({ show, countdown, loading, onDismiss, onRenew }: SessionExpiryModalProps) => import("react/jsx-runtime").JSX.Element;
export default SessionExpiryModal;
export type { SessionExpiryModalProps };