import { FC } from 'react';
import { O as OrientationType } from '../commonTypes-DinbCdmt.js';

type TypographyTypes = {
    /** Function to handle language change.   */
    handleLanguage?: (e: any) => void;
    /** Current selected language.   */
    currentLanguage?: string;
    /** Function to handle theme color mode change.   */
    handleColorMode?: (e: any) => void;
    /** Current selected theme color mode.   */
    currentColorMode?: "light" | "dark";
    orientation?: OrientationType;
    width?: "default" | "full";
};
declare const InterfaceSettings: FC<TypographyTypes>;

export { InterfaceSettings };
