import React from 'react';
interface AppealProps {
    title?: string;
    subtitle?: string;
    label?: string;
    navigateTo?: string;
    Icon?: React.ComponentType;
}
declare const _default: ({ title, subtitle, label, children, navigateTo, Icon }: React.PropsWithChildren<AppealProps>) => JSX.Element;
export default _default;
