export interface DashManifestListQueryParams {
    /**
     * Index of the first item to return, starting at 0. Default is 0
     * @type {number}
     * @memberof DashManifestListQueryParams
     */
    offset?: number | undefined;
    /**
     * Maximum number of items to return. Default is 25, maximum is 100
     * @type {number}
     * @memberof DashManifestListQueryParams
     */
    limit?: number | undefined;
    /**
     * Order list result according to a filter resource attribute. The fields that can be used for sorting are: + `id` + `createdAt` + `modifiedAt` + `type` + `name`
     * @type {string}
     * @memberof DashManifestListQueryParams
     */
    sort?: string | undefined;
    /**
     * Get the manifests that belong to that encoding id
     * @type {string}
     * @memberof DashManifestListQueryParams
     */
    encodingId?: string | undefined;
}
export declare class DashManifestListQueryParamsBuilder {
    private internalParams;
    /**
     *
     * @param offset Index of the first item to return, starting at 0. Default is 0
     */
    offset(offset: number): this;
    /**
     *
     * @param limit Maximum number of items to return. Default is 25, maximum is 100
     */
    limit(limit: number): this;
    /**
     *
     * @param sort Order list result according to a filter resource attribute. The fields that can be used for sorting are: + `id` + `createdAt` + `modifiedAt` + `type` + `name`
     */
    sort(sort: string): this;
    /**
     *
     * @param encodingId Get the manifests that belong to that encoding id
     */
    encodingId(encodingId: string): this;
    buildQueryParams(): DashManifestListQueryParams;
}
