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