/** * Copyright (c) 2026 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose */ import { ParamDefinition as PD } from '../../mol-util/param-definition.js'; import { CustomVolumeProperty } from '../common/custom-volume-property.js'; import { Streamlines } from './streamlines/shared.js'; export declare const StreamlinesParams: { type: PD.Mapped, "basic">>; }; export type StreamlinesParams = typeof StreamlinesParams; export type StreamlinesProps = PD.Values; export type StreamlinesValue = Streamlines; export declare const StreamlinesProvider: CustomVolumeProperty.Provider;