/** * Opens the account settings modal if the component is in modal mode. * Dispatches a global event that the component listens to. */ export declare function openAccountSettingsModal(): void; /** * Closes the account settings modal if the component is in modal mode. * Dispatches a global event that the component listens to. */ export declare function closeAccountSettingsModal(): void; declare global { interface Window { __saasbaseCoreSdk: { openAccountSettingsModal?: () => void; closeAccountSettingsModal?: () => void; }; } }