import type { SequenceController } from './SequenceController';
/**
 * ### `useSequence`
 *
 * A hook to get the current sequence controller. If a key is provided, it will
 * get the sequence controller with that key. Otherwise, it will get the
 * "nearest" default sequence controller.
 */
export declare const useSequence: (key?: undefined) => SequenceController;
