export declare type Loop = number | null;
export declare const setLoop: (newLoop: Loop) => void;
export declare const getLoop: () => Loop;
