import { FilterFunction, FunctionExpressionType } from "./function"; import { Nothing } from "../types"; export declare class Length implements FilterFunction { readonly argTypes: FunctionExpressionType[]; readonly returnType = FunctionExpressionType.ValueType; call(value: unknown): number | typeof Nothing; }