/**
 * The top level interface for file interactions.
 */
export default interface File {
    /**
     * The size of the file in bytes.
     */
    fileSize?: number;
    /**
     * Whether this file is a folder type, defaults to false.
     */
    isDirectory?: boolean;
    /**
     * If it is a video file indicates the duration of the video. If present
     */
    duration?: number;
}
//# sourceMappingURL=File.d.ts.map