import { Theme } from '@emotion/react'; import { SxProps } from '@mui/material'; export interface ProjectComponentTPButton { name: string; isEnableConfirmDialog: boolean; sx?: SxProps; } export interface ProjectComponentStyles { TPButton: ProjectComponentTPButton[]; TPButtonCommonSx: SxProps; } export interface ProjectThemeStyles { Component: ProjectComponentStyles; } export interface ProjectThemePropsTp { Styles: ProjectThemeStyles; }