import { type DelegateType } from '../enums/DelegateType.js'; /** * @class Delegate - Represents a delegate. */ export declare class Delegate { /** * @property {DelegateType} delegateType - The type of delegate. */ delegateType: DelegateType; /** * @property {string | null} name - The name of the delegate. */ name: string | null; /** * @property {string} emailAddress - The email address of the delegate. */ emailAddress: string; /** * @property {Date} delegationDateTime - The date and time the delegate was assigned. */ delegationDateTime: Date; /** * @property {Date | null} delegationCompletedDateTime - The date and time the delegate completed the survey. */ delegationCompletedDateTime: Date | null; /** * @constructor - Creates a new instance of Delegate. * @param {DelegateType} delegateType - The type of delegate. * @param {string | null} name - The name of the delegate. * @param {string} emailAddress - The email address of the delegate. * @param {Date} delegationDateTime - The date and time the delegate was assigned. * @param {Date | null} delegationCompletedDateTime - The date and time the delegate completed the survey. * @returns {Delegate} - A new instance of Delegate. */ constructor(delegateType: DelegateType, name: string | null, emailAddress: string, delegationDateTime: Date, delegationCompletedDateTime: Date | null); }