import React from "react";
declare type Results = {
    danger: any[];
    warning: any[];
};
interface PanelContentProps {
    results: Results;
}
/**
 * Checkout https://github.com/storybookjs/storybook/blob/next/addons/jest/src/components/Panel.tsx
 * for a real world example
 */
export declare const PanelContent: React.FC<PanelContentProps>;
export {};
