type itemsProps = {
    title: string;
    description: string;
    icon: string;
    onPress: () => void;
};
interface Props {
    title?: string;
    items: itemsProps[];
}
declare const HelpBox: React.FC<Props>;
export default HelpBox;
