import * as React from "react"; import { IVolumeMetadata, ISelectVolumeTypes } from "./LeftPanelWidget"; import { IRPCError } from "../utils/RPCUtils"; interface IProps { volumes: IVolumeMetadata[]; addVolume: Function; deleteVolume: Function; updateVolumeType: Function; updateVolumeName: Function; updateVolumeMountPoint: Function; updateVolumeSnapshot: Function; updateVolumeSnapshotName: Function; updateVolumeSize: Function; updateVolumeSizeType: Function; updateVolumeAnnotation: Function; addAnnotation: Function; deleteAnnotation: Function; notebookMountPoints: { label: string; value: string; }[]; selectVolumeSizeTypes: { label: string; value: string; base: number; }[]; selectVolumeTypes: ISelectVolumeTypes[]; useNotebookVolumes: boolean; updateVolumesSwitch: Function; autosnapshot: boolean; updateAutosnapshotSwitch: Function; rokError: IRPCError; } export declare class VolumesPanel extends React.Component { render(): JSX.Element; } export {};