import type { INodeExecutionData, INodeType, INodeTypeDescription, IPollFunctions } from 'n8n-workflow';
export declare class SmartgentSharePointTrigger implements INodeType {
    description: INodeTypeDescription;
    poll(this: IPollFunctions): Promise<INodeExecutionData[][] | null>;
    private static getAccessToken;
    private static getSiteId;
    private static getDriveId;
    private static listDocuments;
    private static getDocumentsFromFolder;
    private static getDocumentsFromSubfolders;
    private static isRootPath;
    private static cleanFolderPath;
    private static getFoldersFromPath;
    private static downloadDocument;
}
