import { Component } from 'solid-js';

interface Field {
    name: string;
    type: string;
    description?: string;
    isDeprecated?: boolean;
    deprecationReason?: string;
}
interface TypeTableProps {
    fields: Field[];
    onSelectType: (typeName: string) => void;
}
export declare const TypeTable: Component<TypeTableProps>;
export {};
