import type { IPollFunctions, ILoadOptionsFunctions, INodeExecutionData, INodePropertyOptions, INodeType, INodeTypeDescription } from 'n8n-workflow';
import { fileSearch, folderSearch } from './v2/methods/listSearch';
export declare class GoogleDriveTrigger implements INodeType {
    description: INodeTypeDescription;
    methods: {
        listSearch: {
            fileSearch: typeof fileSearch;
            folderSearch: typeof folderSearch;
        };
        loadOptions: {
            getDrives(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
        };
    };
    poll(this: IPollFunctions): Promise<INodeExecutionData[][] | null>;
}
//# sourceMappingURL=GoogleDriveTrigger.node.d.ts.map