/**
 * Interface `PlayConfig` to change the behaviour about auto-navigation for both modal gallery and carousel.
 */
export interface PlayConfig {
    autoPlay: boolean;
    interval: number;
    pauseOnHover: boolean;
}
