export interface IPagedResult<ResultType, PagedToken> {
    result: ResultType;
    nextToken: PagedToken;
}
