import { type TagVariant } from '../ui/atoms/Tag/Tag';
export interface DebugTableRow {
    key: string;
    value: string;
    label?: string;
    variant?: TagVariant;
}
interface DebugTableProps {
    data: readonly DebugTableRow[];
    heading?: string;
    searchTerm?: string;
    tagPosition?: 'before' | 'after';
    sort?: boolean;
}
export declare const DebugTable: ({ data, heading, searchTerm, tagPosition, sort, }: DebugTableProps) => import("preact").JSX.Element;
export {};
