import { SpwsResponse } from "../../types";
interface Operation extends SpwsResponse {
data: number;
}
declare const getListViewThreshold: (listName: string, { webURL }?: {
webURL?: string | undefined;
}) => Promise<Operation>;
export default getListViewThreshold;