import type { Callback } from '@forgerock/sdk-types'; import { BaseCallback } from './base-callback.js'; /** * Represents a callback used to collect acceptance of terms and conditions. */ export declare class TermsAndConditionsCallback extends BaseCallback { payload: Callback; /** * @param payload The raw payload returned by OpenAM */ constructor(payload: Callback); /** * Gets the terms and conditions content. */ getTerms(): string; /** * Gets the version of the terms and conditions. */ getVersion(): string; /** * Gets the date of the terms and conditions. */ getCreateDate(): Date | null; /** * Sets the callback's acceptance. */ setAccepted(accepted?: boolean): void; } //# sourceMappingURL=terms-and-conditions-callback.d.ts.map