import React from 'react';
import { CSS } from '../../../Theme';
export declare const LeaveCard: ({ icon, title, subtitle, onClick, bg, titleColor, css, }: {
    icon: React.JSX.Element;
    title: string;
    subtitle: string;
    onClick: () => void;
    titleColor: string;
    bg: string;
    css?: CSS | undefined;
}) => React.JSX.Element;
