import React from 'react'; interface SqlPreviewProps { className?: string; value?: string; theme?: 'light' | 'dark'; fontSize?: number; /** Whether to auto-format the SQL before displaying. Default: true */ enableFormat?: boolean; } declare const SqlPreview: React.FC; export default SqlPreview; export type { SqlPreviewProps };