import { AppType } from "../types";
export interface PointTypeAllowedResult {
    ok: boolean;
    errors: string[];
}
export declare function validatePointTypeAllowed(config: Record<string, unknown> | null | undefined, appType: AppType): PointTypeAllowedResult;
