import React from 'react';
interface EmptyProps {
    title?: string;
    image?: string;
    subtitle?: string;
    compact?: boolean;
}
declare const Empty: React.FC<EmptyProps>;
export default Empty;
