export interface CencDrmListQueryParams {
    /**
     * Index of the first item to return, starting at 0. Default is 0
     * @type {string}
     * @memberof CencDrmListQueryParams
     */
    offset?: string | undefined;
    /**
     * Maximum number of items to return. Default is 25, maximum is 100
     * @type {string}
     * @memberof CencDrmListQueryParams
     */
    limit?: string | undefined;
}
export declare class CencDrmListQueryParamsBuilder {
    private internalParams;
    /**
     *
     * @param offset Index of the first item to return, starting at 0. Default is 0
     */
    offset(offset: string): this;
    /**
     *
     * @param limit Maximum number of items to return. Default is 25, maximum is 100
     */
    limit(limit: string): this;
    buildQueryParams(): CencDrmListQueryParams;
}
