import { FunctionComponent } from 'react';

interface LoopVideoNudgeProps {
    message: string;
    countdown: number;
    replayLabel: string;
    onReplay?: () => void;
}
declare const LoopVideoNudge: FunctionComponent<LoopVideoNudgeProps>;

export { LoopVideoNudge as default };
export type { LoopVideoNudgeProps };
