import React from 'react';
interface LoggerModalProps {
    visible: boolean;
    onClose: () => void;
    height?: number;
    theme?: 'light' | 'dark' | {
        colors?: {
            background?: string;
            text?: string;
            border?: string;
            [key: string]: string | undefined;
        };
    };
    sort?: 'asc' | 'desc';
    maxRows?: number;
    compact?: boolean;
    onBackPressed?: () => void;
}
declare const LoggerModal: React.FC<LoggerModalProps>;
export default LoggerModal;
//# sourceMappingURL=LoggerModal.d.ts.map