import { CodeEditorProps } from './interfaces';
interface PreferencesModali18nStrings {
    header: string;
    cancel: string;
    confirm: string;
    wrapLines: string;
    theme: string;
    lightThemes: string;
    darkThemes: string;
}
interface PreferencesModalProps {
    visible: boolean;
    preferences?: Partial<CodeEditorProps.Preferences>;
    i18nStrings: PreferencesModali18nStrings;
    onConfirm: (preferences: CodeEditorProps.Preferences) => void;
    onDismiss: () => void;
}
declare const _default: (props: PreferencesModalProps) => JSX.Element;
export default _default;
