import React from 'react';
import { ComplexAction } from '../types';
export interface PHXEmptyRecordProps {
    className?: string;
    border?: boolean;
    icon?: React.ReactNode;
    primaryAction?: ComplexAction;
    secondaryAction?: ComplexAction;
    type?: 'default' | 'small' | 'micro';
    title?: string;
    description?: string;
    loading?: boolean;
}
export declare function PHXEmptyRecord({ border, className, description, icon, loading, primaryAction, secondaryAction, title, type, }: PHXEmptyRecordProps): React.JSX.Element;
