export default check_domain;
declare namespace check_domain {
    let validators: {
        type: string;
        callback: (req: import("express").Request, the_domain: string) => string | boolean | string[] | null | undefined;
    }[];
    function validator(req: import("express").Request, the_domain: string): boolean;
    function get(req: import("express").Request): string | true | string[] | null;
}
//# sourceMappingURL=check_domain.d.mts.map