import { ResourcePart, type Gvk_SubKind, type ResourceEntity, type ResourceRef, type Resource_Props } from "@k8ts/instruments"; import type { K8S } from "@k8ts/sample-interfaces"; import { v1 } from "../../../../../gvks"; export interface ContainerDeviceMount_Input extends Resource_Props { $backend: ResourceRef; } export interface ContainerMountDevice_Props extends ContainerDeviceMount_Input { mountPath: string; } export declare class ContainerDeviceMount extends ResourcePart { constructor(parent: ResourceEntity, props: ContainerMountDevice_Props); get kind(): Gvk_SubKind<"v1/Pod.Container.DeviceMount">; get backend(): ResourceRef>; get path(): string; protected __submanifest__(): K8S.VolumeDevice; } //# sourceMappingURL=device.d.ts.map