import * as React from "react";
import type { Size } from "../common/types";
import type { Type } from "./types";
interface ListContextProps {
    readonly size?: Size | null;
    readonly type?: Type | null;
}
declare const ListContext: React.Context<ListContextProps>;
export default ListContext;
