import { Activity } from './activity';
import { BaseObject } from './baseObject';
export interface ActivityPage extends BaseObject {
    totalResultSetSize?: number;
    startIndex?: number;
    results?: Activity[];
}
