import { ComponentType } from "preact";
import Grid from "../../grid";
export interface WithGridProps {
grid: Grid;
}
export declare function withGrid<P extends WithGridProps>(Wrapped: ComponentType<P>): (props: Omit<P, 'grid'>) => JSX.Element;
export default withGrid;