/**
 * Result of authorization process
 */
export declare class ApiAuthorizationResult {
    /**
     * Whether authorization was successful
     */
    isAuthorized: boolean;
    /**
     * Error message if authorization failed
     */
    error?: string;
    /**
     * Creates a new successful authorization result
     *
     * @returns Authorization result
     */
    static success(): ApiAuthorizationResult;
    /**
     * Creates a new failed authorization result
     *
     * @param error Error message
     * @returns Authorization result
     */
    static failure(error: string): ApiAuthorizationResult;
}
