import type { ICredentialType, INodeProperties, IAuthenticateGeneric, ICredentialTestRequest, Icon } from 'n8n-workflow';
export declare class SmartSuiteApi implements ICredentialType {
    name: string;
    displayName: string;
    icon: Icon;
    documentationUrl: string;
    /**
     * Attach your API Token and Workspace ID on every request
     */
    authenticate: IAuthenticateGeneric;
    /**
     * Fake credential test by sending a lightweight HEAD request to the public SmartSuite homepage.
     * No credentials or login required, always returns 200 OK.
     */
    test: ICredentialTestRequest;
    /**
     * User-entered credential fields
     */
    properties: INodeProperties[];
}
