import { AzureNode, type NodeMetadata } from '@cloud-diagrams/core';
export interface ContainerOptions extends NodeMetadata {
    image?: string;
    cpu?: number;
    memory?: string;
    ports?: number[];
}
export declare class ContainerInstance extends AzureNode {
    constructor(label: string, options?: ContainerOptions);
    static create(label: string, options?: ContainerOptions): ContainerInstance;
}
export declare const ACI: (label: string, options?: ContainerOptions) => ContainerInstance;
//# sourceMappingURL=container-instance.d.ts.map