import { BaseObject } from './baseObject';
import { DaiAuthenticationKey } from './daiAuthenticationKey';
export interface DaiAuthenticationKeyPage extends BaseObject {
    totalResultSetSize?: number;
    startIndex?: number;
    results?: DaiAuthenticationKey[];
}
