type Data = Array<unknown> | number | Record<string, unknown> | string;
export interface Props {
    compilation?: Record<string, Data>;
    config?: Record<string, Data>;
    debug?: boolean;
}
export default function Debug({ compilation, debug }: Props): import("@roots/bud-support/jsx-runtime").JSX.Element | null;
export {};
