export interface StickyProps {
	modelValue?: string;
	height?: number;
	width?: number;
	minHeight?: number;
	minWidth?: number;
	id?: string;
	defaultText?: string;
	editMode?: boolean;
	readOnly?: boolean;
	backgroundColor?: number | string;
}
