import type { WithNormalizedProps } from '../../global';
import type { ItemTileInput, ItemTileLayout } from "../ebay-item-tile/index.marko";
static interface ItemTileGroupInput extends Omit<Marko.HTML.Div, `on${string}`> {
    layout?: ItemTileLayout;
    item?: Marko.AttrTag<ItemTileInput>;
    "on-action"?: () => void;
}
export interface Input extends WithNormalizedProps<ItemTileGroupInput> {
}
