/** * Validates a Todoist API token by making a lightweight API call. * * @returns `true` if the token is valid, `false` if it's an auth error (401/403). * @throws On transient errors (network failures, 5xx) so the caller can decide. */ declare function validateTodoistToken(apiKey: string, baseUrl?: string): Promise; export { validateTodoistToken }; //# sourceMappingURL=validate-todoist-token.d.ts.map