import { ModelData, Model } from "@kubernetes-models/base"; /** * HeaderMatch represents a matching value of Headers in HTTPIngressPath. * Currently, only the exact matching is supported. */ export interface IHeaderMatch { "exact": string; } /** * HeaderMatch represents a matching value of Headers in HTTPIngressPath. * Currently, only the exact matching is supported. */ export declare class HeaderMatch extends Model implements IHeaderMatch { "exact": string; constructor(data?: ModelData); } export type { IHeaderMatch as IDevKnativeNetworkingPkgApisNetworkingV1alpha1HeaderMatch, HeaderMatch as DevKnativeNetworkingPkgApisNetworkingV1alpha1HeaderMatch };