import type { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodePropertyOptions, INodeType, INodeTypeBaseDescription, INodeTypeDescription } from 'n8n-workflow'; import { listSearch } from '../shared/methods'; export declare class NotionV1 implements INodeType { description: INodeTypeDescription; constructor(baseDescription: INodeTypeBaseDescription); methods: { listSearch: typeof listSearch; loadOptions: { getDatabaseProperties(this: ILoadOptionsFunctions): Promise; getFilterProperties(this: ILoadOptionsFunctions): Promise; getBlockTypes(this: ILoadOptionsFunctions): Promise; getPropertySelectValues(this: ILoadOptionsFunctions): Promise; getUsers(this: ILoadOptionsFunctions): Promise; getDatabaseIdFromPage(this: ILoadOptionsFunctions): Promise; getDatabaseOptionsFromPage(this: ILoadOptionsFunctions): Promise; getTimezones(this: ILoadOptionsFunctions): Promise; }; }; execute(this: IExecuteFunctions): Promise; } //# sourceMappingURL=NotionV1.node.d.ts.map