import type { OpenAPIV3_1 } from 'openapi-types';
export interface K8sAPISchemaProps {
    schema: OpenAPIV3_1.SchemaObject;
    fullSchema?: OpenAPIV3_1.Document;
}
export interface K8sAPISchemaItemProps {
    schema: OpenAPIV3_1.SchemaObject;
    fullSchema?: OpenAPIV3_1.Document;
    propertyPath?: string;
}
export declare const K8sAPISchemaItemBasic: ({ schema, }: {
    schema: OpenAPIV3_1.SchemaObject;
}) => import("react/jsx-runtime").JSX.Element;
export declare const K8sAPISchemaItem: ({ schema, fullSchema, propertyPath, }: K8sAPISchemaItemProps) => import("react/jsx-runtime").JSX.Element;
export declare const K8sAPISchema: ({ schema, fullSchema }: K8sAPISchemaProps) => import("react/jsx-runtime").JSX.Element;
