import React, { HTMLAttributes } from "react";
export interface GridListCellProps extends HTMLAttributes {
/**
* Boolean if the className should be cloned into the child instead of
* wrapping in another div. This will only work if the `children` is a single
* ReactElement.
*/
clone?: boolean;
/**
* Boolean if the cell should be square by also setting the current cell size
* to the `height`.
*/
square?: boolean;
}
declare const GridListCell: React.ForwardRefExoticComponent>;
export default GridListCell;