import React from 'react';
declare type PanelProps = {
    title?: string;
    children: React.ReactNode;
};
export declare const Panel: React.FunctionComponent<PanelProps>;
export {};
