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