import React, { HTMLAttributes } from 'react';
export interface EmptyProps extends Omit, 'title'> {
title: React.ReactNode;
subtitle?: React.ReactNode;
action?: React.ReactNode;
}
declare const Empty: ({ title, subtitle, action, }: EmptyProps) => React.JSX.Element;
export default Empty;