export declare class Volume { source: string; destination: string; options?: string | undefined; static readonly REGEX: RegExp; constructor(source: string, destination: string, options?: string | undefined); toString(): string; static isValid(volume: string): boolean; static parse(volume: string): Volume; }