import React from 'react'; export interface IAutoExitProps { children?: React.ReactNode; } declare function AutoExit({ children }: IAutoExitProps): JSX.Element; export default AutoExit;