import * as Schema from "effect/Schema";
declare const VolumeTypeMount_base: Schema.Class<VolumeTypeMount, {
    /** FsType specifies the filesystem type for the mount volume. */
    FsType: Schema.optional<typeof Schema.String>;
    /** MountFlags defines flags to pass when mounting the volume. */
    MountFlags: Schema.optionalWith<Schema.Array$<typeof Schema.String>, {
        nullable: true;
    }>;
}, Schema.Struct.Encoded<{
    /** FsType specifies the filesystem type for the mount volume. */
    FsType: Schema.optional<typeof Schema.String>;
    /** MountFlags defines flags to pass when mounting the volume. */
    MountFlags: Schema.optionalWith<Schema.Array$<typeof Schema.String>, {
        nullable: true;
    }>;
}>, never, {
    readonly FsType?: string | undefined;
} & {
    readonly MountFlags?: readonly string[] | undefined;
}, {}, {}>;
export declare class VolumeTypeMount extends VolumeTypeMount_base {
}
export {};
//# sourceMappingURL=VolumeTypeMount.generated.d.ts.map