declare module '*.styl' declare module 'classnames' { type ClassValue = | string | number | boolean | null | undefined | ClassArray | ClassDictionary interface ClassDictionary { [id: string]: boolean | undefined | null } type ClassArray = ClassValue[] function classnames(...args: ClassValue[]): string export = classnames } declare module '@linagora/twake-mui' { export * from '@mui/material' export function useTheme(): T export type AvatarSize = 'xs' | 's' | 'm' | 'l' | 'xl' export type AvatarDisplay = 'initial' | 'inline' export interface AvatarProps extends Omit< import('@mui/material').AvatarProps, 'color' > { color?: string size?: AvatarSize | number border?: boolean innerBorder?: boolean disabled?: boolean display?: AvatarDisplay } export const Avatar: import('react').FC export const radius: Record }