import { DataFrame, PullOptions, SourceNode, SourceNodeOptions } from '@openhps/core'; import { SolidPropertyService } from './SolidPropertyService'; import { PropertyType } from './SolidPropertySink'; export declare class SolidPropertySource extends SourceNode { protected options: SolidPropertySourceOptions; protected service: SolidPropertyService; constructor(options?: SolidPropertySourceOptions); onBuild(): Promise; onPull(options?: PullOptions): Promise; } export interface SolidPropertySourceOptions extends SourceNodeOptions { properties?: PropertyType[]; } //# sourceMappingURL=SolidPropertySource.d.ts.map