import { Component, WithChildren } from "@adpt/core";
/**
 * Props for a {@link Compute} element
 *
 * @beta
 */
export interface ComputeProps extends WithChildren {
    name?: string;
    ip?: string;
}
/**
 * Abstract element to represent a computational resource
 *
 * @beta
 */
export declare abstract class Compute extends Component<ComputeProps, {}> {
}
export default Compute;
//# sourceMappingURL=Compute.d.ts.map