import { PlayQueueItemDto } from './IPlayQueueItemStore';
import { RepeatMode } from './RepeatMode';
export interface PlayQueueLocalStorageState {
    version?: '1.0';
    repeat?: RepeatMode;
    shuffle?: boolean;
    items?: PlayQueueItemDto[];
    currentIndex?: number;
}
export declare const validatePlayQueueLocalStorageState: import('ajv').ValidateFunction<PlayQueueLocalStorageState>;
