import { IQueryOptions } from "../../Types";
export interface ITransformItemsCommandArgs<TItem, TMatrix> {
    items?: TItem[];
    query?: string;
    queryOptions?: IQueryOptions;
    matrix: TMatrix;
    finished?: boolean;
    newAngle?: number;
}
