import { ModelData, Model } from "@kubernetes-models/base";
/**
 * ForNode provides information about which nodes should consume this endpoint.
 */
export interface IForNode {
    /**
     * name represents the name of the node.
     */
    "name": string;
}
/**
 * ForNode provides information about which nodes should consume this endpoint.
 */
export declare class ForNode extends Model<IForNode> implements IForNode {
    "name": string;
    constructor(data?: ModelData<IForNode>);
}
export { IForNode as IIoK8sApiDiscoveryV1ForNode, ForNode as IoK8sApiDiscoveryV1ForNode };
