import { IFileDescriptorOptions } from "./IFileDescriptorOptions";
/**
 * Provides a description of a file.
 */
export declare class FileDescriptor {
    /**
     * The path to load the file from.
     */
    private source;
    /**
     * The filename to save the file to.
     */
    private fileName;
    /**
     * Initializes a new instance of the `FileDescriptor` class.
     */
    constructor(options: IFileDescriptorOptions);
    /**
     * Gets or sets the path to load the file from.
     */
    Source: string;
    /**
     * Gets ort sets the filename to save the file to.
     */
    FileName: string;
}
