///
import { ModalProps } from '../Modal/Modal';
interface ExpiryModalProps extends Omit {
/**
* A callback that fires once the user clicks on 'Log out'
*/
onEndSession: () => void;
/**
* A callback that fires once the user clicks on 'Continue'
*/
onKeepSession: () => void;
}
export default function ExpiryModal({ onEndSession, onKeepSession, ...rest }: ExpiryModalProps): JSX.Element;
export {};