import { QueryBuilder } from "../core"; import { DESC_FORMAT, PLAYLIST_FORMAT } from "../enums"; export interface IFormatQueryBuilder { descriptionFormat(format?: DESC_FORMAT): this; playlistFormat(format?: PLAYLIST_FORMAT): this; build(): string; } export declare class FormatQueryBuilder extends QueryBuilder { descriptionFormat(format?: DESC_FORMAT | undefined): this; playlistFormat(format?: PLAYLIST_FORMAT | undefined): this; build(): string; }