import { PlayerType } from '@aigamo/nostalgic-diva';
import { JSONSchemaType } from 'ajv';
export interface PlayQueueItemDto {
    readonly url: string;
    readonly type: PlayerType;
    readonly videoId: string;
    readonly title: string;
}
export declare const PlayQueueItemDtoSchema: JSONSchemaType<PlayQueueItemDto>;
