import { RequiredConfig, Rule, ToStringContext } from "../config";
export declare class UndefinedRule implements Rule<undefined> {
test(data: unknown): data is undefined;
toString(this: this, __data: undefined, __config: RequiredConfig, __context: ToStringContext): string;
}