import { IContainerResizeOptions } from "./IContainerResizeOptions";
export interface IResizeArgs<TProduct, TSurface, TItem, TPrintArea> {
    target: TProduct | TSurface[] | TItem[] | TPrintArea;
    width: number | string;
    height: number | string;
    containerOptions?: {
        [key: string]: IContainerResizeOptions;
    };
    defaultOptions?: IContainerResizeOptions;
}
