import React from 'react'; import { type infer as zInfer } from 'zod'; import { options as apiOptions } from '../../../commands/api/list/proxy.js'; type Props = { options: zInfer; }; export default function APIListProxyTableComponent({ options }: Props): React.JSX.Element | null; export {};