import { CSSProperties } from 'react'; export declare type NotUndefined = Exclude; export interface CustomObj { [key: string]: T; } export declare type AlignType = 'left' | 'center' | 'right'; export interface CSSProps extends CSSProperties { width?: string | number; height?: string | number; borderRadius?: string | number; fontWeight?: number | string; }