interface AiwgIndexSchemaValidationResult { valid: boolean; errors: string[]; } declare function getAiwgFortemiIndexExportSchema(): unknown; declare function validateAiwgFortemiIndexExportSchema(value: unknown): AiwgIndexSchemaValidationResult; declare function validateAiwgFortemiProjectedRecordSchema(value: unknown): AiwgIndexSchemaValidationResult; export { type AiwgIndexSchemaValidationResult, getAiwgFortemiIndexExportSchema, validateAiwgFortemiIndexExportSchema, validateAiwgFortemiProjectedRecordSchema };