import { SuccessResult } from '@studyportals/sp-r2d2-interface';
/**
 * The result received after successfully retrieving a collection of report IDs.
 */
export declare class ReportIdsRetrievalResult extends SuccessResult {
    private _reportIds;
    /**
    * Initializes a new ReportIdsRetrievalResult instance.
    *
    * @param reportIds The resulted collection of report IDs.
    */
    constructor(reportIds: string[]);
    /**
    * Gets the resulted collection of report IDs.
    */
    readonly reportIds: string[];
    /**
    * Returns an object that can be stringified, resulting in the correct
    * serialization of the current instance.
    *
    * @see JSON.stringify
    */
    protected toJSON(): object;
}
