import { MixedContentContext } from '../../editor/widget-framework/mixed-content-context'; import { OffsetStyle } from '../styling/offset-style'; import { PostPasswordChangeAction } from './interfaces/post-password-change-action'; export declare class ChangePasswordEntity { PostPasswordChangeAction?: PostPasswordChangeAction; PostPasswordChangeRedirectPage?: MixedContentContext; PostPasswordChangeMessage: string; SfViewName?: string; Margins?: OffsetStyle; SfWidgetLabel: string; CssClass?: string; Header: string; CurrentPassword: string; NewPassword: string; ConfirmPassword: string; SubmitButtonLabel: string; LoginFirstMessage: string; ValidationRequiredMessage: string; ValidationMismatchMessage: string; ExternalProviderMessageFormat: string; Attributes?: { [key: string]: Array<{ Key: string; Value: string; }>; }; }