/** * Logs the user out by clearing stored Auth0 tokens from `~/.sosrc`. * Non-auth fields (apiUrl, defaultOrganizationUid, emulatorUid) are preserved. * * @group Authentication:2 * * @example * ```bash * # Logout from default profile * sos logout * * # Logout from a specific profile * sos --profile staging logout * ``` * * @since 4.0.0 */ export declare const logout: { name: "logout"; description: string; optionList: never[]; commands: never[]; run(): Promise; };