export type TAutoSizingBox = {
children?: React.ReactNode;
startHeight?: number;
startWidth?: number;
adjustHeight?: boolean;
adjustWidth?: boolean;
changeTrigger?: any;
};
export type TAutoSizingBoxWithHTMLAttrs = TAutoSizingBox & React.HTMLAttributes<HTMLDivElement>;