import React from 'react';
export type EmptyProps = {
    className?: string;
    type?: 'error' | 'error_permission' | 'error_system' | 'order' | 'benefit' | 'search' | 'knowledge';
    image?: string;
    tip?: string;
    desc?: string;
    children?: React.ReactNode;
};
export declare const Empty: (props: EmptyProps) => React.JSX.Element;
