import { IQueryOptions } from "../../Types";
export interface IPlaceholderContentRotateCommandArgs<TItem> {
    items?: TItem[];
    query?: string;
    queryOptions?: IQueryOptions;
    clockwise?: boolean;
}
